/* ===== JEU "PRÉFÈRES-TU" - CSS DÉDIÉ ===== */

.jeu-page {
    padding: 6rem 5% 4rem;
    min-height: 100vh;
    background: var(--darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.jeu-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jeu-title-section {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 3.5rem;
    width: 100%;
}

.jeu-title-section p {
    color: var(--gray);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.jeu-main-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.jeu-wrapper {
    width: 100%;
    background: rgba(15, 15, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.options-dual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.option-choice {
    position: relative;
    width: 100%;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.option-choice:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.option-choice.selected {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(255, 210, 63, 0.3);
}

.option-choice:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.option-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
}

.option-a .option-label {
    color: var(--primary);
}

.option-b .option-label {
    color: var(--accent);
}

.option-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light);
    line-height: 1.4;
    margin: 0;
    font-family: var(--font-heading);
}

.option-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.option-a .stat-number {
    color: var(--primary);
}

.option-b .stat-number {
    color: var(--accent);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.option-progress-wrapper {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.option-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.option-b .option-progress-bar {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.vs-divider::before,
.vs-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.vs-divider span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray);
    font-family: var(--font-heading);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.jeu-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.btn-new-question {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-new-question:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-new-question:active {
    transform: translateY(0);
}

.btn-new-question svg {
    transition: transform 0.3s ease;
}

.btn-new-question:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .jeu-page {
        padding: 5rem 3% 3rem;
    }
    
    .jeu-wrapper {
        padding: 1.5rem;
    }
    
    .option-choice {
        padding: 1.25rem 1.5rem;
    }
    
    .option-text {
        font-size: 1.1rem;
    }
    
    .option-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .btn-new-question {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}

