/* 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;
}

.question-display {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 1rem;
    border: 3px solid #dee2e6;
}

.whack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
    padding: 1rem;
}

.whack-hole {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 4px solid #dee2e6;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.whack-hole:hover:not(.disabled) {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--primary-shadow);
}

.whack-hole.correct-clicked {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-color: #28a745;
    animation: pulse-correct 0.5s ease;
}

.whack-hole.wrong-clicked {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-color: #dc3545;
    animation: shake 0.5s ease;
}

.whack-hole.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.game-message {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin: 1rem 0;
    min-height: 30px;
}

@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;
}

/* 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;
}

@media (max-width: 768px) {
    .whack-grid {
        max-width: 350px;
        gap: 0.75rem;
    }
    .whack-hole {
        font-size: 2rem;
    }
    .question-display {
        font-size: 2rem;
    }
}
