/* style.css */
:root {
    --bg-color: #f8f9fa;
    --text-color: #2d3436;
    --primary: #6c5ce7;
    --red: #ff7675;
    --blue: #74b9ff;
    --yellow: #fdcb6e;
    --white: #dfe6e9;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.language-switcher {
    margin-bottom: 30px;
}

.language-switcher a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    margin: 0 10px;
    padding: 5px 15px;
    border: 2px solid var(--primary);
    border-radius: 20px;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

input[type="date"] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

/* ألوان الأختام */
.color-red { background-color: var(--red); color: white; }
.color-blue { background-color: var(--blue); color: white; }
.color-yellow { background-color: var(--yellow); color: #2d3436; }
.color-white { background-color: var(--white); color: #2d3436; border: 1px solid #ccc; }

.main-kin {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* تصميم الصليب الماياني */
.oracle-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #ddd;
}

.oracle-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.oracle-row-middle {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.oracle-item {
    background: #f1f2f6;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    min-width: 120px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.oracle-item.destiny {
    background: #fff;
    border: 2px solid var(--primary);
    font-weight: bold;
}
