/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a202c;
}

::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Game card animations */
.game-card {
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
}

/* Button animations */
.btn-glow {
    box-shadow: 0 4px 15px 0 rgba(168, 85, 247, 0.75);
}

.btn-glow:hover {
    box-shadow: 0 6px 20px 0 rgba(168, 85, 247, 0.9);
}

/* Loading animation */
.loading-spinner {
    border: 4px solid #f3f4f6;
    border-left: 4px solid #8b5cf6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Responsive text */
@media (max-width: 640px) {
    .text-responsive {
        font-size: 1.5rem;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .game-card img {
        height: 120px;
    }
    
    .game-card h4 {
        font-size: 0.875rem;
    }
    
    .bonus-section .grid {
        gap: 1rem;
    }
    
    .bonus-card {
        padding: 1rem;
    }
}

/* Touch-friendly buttons */
@media (max-width: 768px) {
    .btn, .nav-link, .mobile-nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .game-card {
        min-height: 160px;
    }
}
/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #f59e0b 0%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}