/* SET YOUR GAME'S COLOR THEME HERE */
:root {
    --primary-color: #ff5722;
    --primary-hover: #e64a19;
    --hero-gradient-start: rgba(255, 87, 34, 0.1);
    --hero-gradient-end: rgba(255, 152, 0, 0.1);
    --section-bg-start: rgba(255, 87, 34, 0.05);
    --section-bg-end: rgba(255, 152, 0, 0.05);
    --primary-shadow: rgba(255, 87, 34, 0.3);
    --feature-shadow: rgba(255, 87, 34, 0.15);
    --focus-shadow: rgba(255, 87, 34, 0.25);
    --mode-shadow: rgba(255, 87, 34, 0.2);
    --btn-shadow: rgba(255, 87, 34, 0.4);
    --summary-bg-start: rgba(255, 87, 34, 0.1);
    --summary-bg-end: rgba(255, 152, 0, 0.05);
    --accordion-icon-filter: invert(43%) sepia(96%) saturate(2684%) hue-rotate(2deg) brightness(102%) contrast(104%);
}

.game-stats {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 1rem;
}

.game-stats .stat-card {
    flex: 1;
    min-width: 0;
}

.statement-display {
    text-align: center;
    margin: 3rem 0;
}

.statement-text {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
    border: 3px solid #dee2e6;
}

.answer-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.answer-btn {
    width: 200px;
    height: 200px;
    border: none;
    border-radius: 1rem;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.answer-btn.true-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.answer-btn.true-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.answer-btn.false-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.answer-btn.false-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.answer-btn.show-correct {
    animation: pulse-correct 1s ease;
    border: 5px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

@keyframes pulse-correct {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.answer-btn-icon {
    font-size: 4rem;
}

.answer-btn-text {
    font-size: 1.5rem;
}

@keyframes flash-correct {
    0%, 100% {
        background-color: transparent;
        border-color: transparent;
    }
    50% {
        background-color: rgba(76, 175, 80, 0.2);
        border: 3px solid #4caf50;
    }
}

@keyframes flash-wrong {
    0%, 100% {
        background-color: transparent;
        border-color: transparent;
    }
    50% {
        background-color: rgba(244, 67, 54, 0.2);
        border: 3px solid #f44336;
    }
}

.content-card.flash-correct {
    animation: flash-correct 0.6s ease;
}

.content-card.flash-wrong {
    animation: flash-wrong 0.6s ease;
}

.flash-correct {
    animation: flash-correct 0.6s ease;
}

.flash-wrong {
    animation: flash-wrong 0.6s ease;
}

/* Clickable steps */
.step.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.step.clickable:hover {
    transform: scale(1.05);
}

.step.clickable:hover .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Locked steps (non-clickable) */
.step.locked {
    cursor: not-allowed;
    opacity: 0.5;
}

.step.locked:hover {
    transform: none;
}
