/* Custom styles */
body {
    background-color: #111827;
    color: #e5e7eb;
}

.bonus-card {
    background-color: #1f2937;
    border: 1px solid #374151;
}

.game-section {
    background-color: #1f2937;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

/* Override Tailwind text colors for dark mode */
.text-gray-700 {
    color: #9ca3af !important;
}

/* Custom hover effects */
.hover-card:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Custom shadows for dark mode */
.shadow-custom {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

/* Logo styles */
.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

@keyframes pulse-fast {
    0%, 100% {
        background-color: oklch(76.9% 0.188 70.08); /* Bright yellow */
        color: #ffffff;
    }
    50% {
        background-color: oklch(82.8% 0.189 84.429); /* More intense yellow */
        color: #000000;
    }
}
.animate-pulse-fast {
    animation: pulse-fast 0.5s infinite;
}

oklch(76.9% 0.188 70.08)