/* Flying Chess Club - Luxury Chess-themed Website Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for consistent theming */
:root {
    /* Enhanced Chess-themed Color Palette */
    --primary-color: #FFD700; /* Bright Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --accent-color: #FF6B35; /* Orange Red */
    --tertiary-color: #4A4A4A; /* Dark Gray */
    --background-dark: #0D0D0D; /* Almost Black */
    --background-light: #1A1A1A; /* Dark Gray */
    --background-card: rgba(26, 26, 26, 0.95);
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-muted: #B0B0B0;
    --text-gold: #FFD700;
    --border-color: #333333;
    --border-gold: #FFD700;
    --success-color: #00C851;
    --warning-color: #FF8800;
    --danger-color: #FF4444;
    --info-color: #33B5E5;
    
    /* Chess Board Colors */
    --chess-light: #F0D9B5; /* Light squares */
    --chess-dark: #B58863; /* Dark squares */
    --chess-highlight: #FFFF00; /* Highlight color */
    --chess-shadow: rgba(0, 0, 0, 0.7);
    
    /* Enhanced Gradients */
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    --gradient-secondary: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FF6B35 100%);
    --gradient-dark: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #2D2D2D 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-chess: linear-gradient(45deg, var(--chess-light) 25%, var(--chess-dark) 25%, var(--chess-dark) 50%, var(--chess-light) 50%, var(--chess-light) 75%, var(--chess-dark) 75%);
    
    /* Typography */
    --font-primary: 'Orbitron', 'Courier New', monospace;
    --font-secondary: 'Inter', 'Segoe UI', sans-serif;
    --font-chess: 'Times New Roman', serif;
    
    /* Enhanced Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    --spacing-huge: 4rem;
    
    /* Border Radius */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 18px;
    --border-radius-xl: 24px;
    --border-radius-round: 50%;
    
    /* Enhanced Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
    --shadow-chess: 0 8px 25px rgba(181, 136, 99, 0.4);
    
    /* Animations */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Chess Patterns */
    --chess-pattern: repeating-conic-gradient(var(--chess-light) 0% 25%, var(--chess-dark) 0% 50%) 50% / 60px 60px;
    --chess-pattern-small: repeating-conic-gradient(var(--chess-light) 0% 25%, var(--chess-dark) 0% 50%) 50% / 20px 20px;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-backdrop: blur(10px);
}

body {
    font-family: var(--font-secondary);
    background: var(--background-dark);
    background-image: 
        radial-gradient(circle at 25% 25%, var(--secondary-color) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, var(--accent-color) 0%, transparent 50%),
        var(--chess-pattern);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 49%, rgba(255, 215, 0, 0.03) 50%, transparent 51%);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}

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

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.05) 25%, 
        rgba(255, 215, 0, 0.1) 50%, 
        rgba(255, 215, 0, 0.05) 75%, 
        transparent 100%);
    pointer-events: none;
}

/* Modern Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.nav-brand {
    z-index: 1001;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.brand-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: transparent;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

/* Modern Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }

    .hamburger {
        display: flex;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Mobile hero adjustments */
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-modern {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--chess-pattern-small);
    opacity: 0.05;
    pointer-events: none;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
    border-bottom-color: var(--accent-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-primary);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    position: relative;
}

.logo-text::before {
    content: '♛';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--primary-color);
    animation: chess-glow 2s ease-in-out infinite alternate;
}

@keyframes chess-glow {
    from { text-shadow: 0 0 10px var(--primary-color); }
    to { text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--accent-color); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.nav-links a.active {
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left 0.5s;
}

.nav-links a:hover::before {
    left: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius-sm);
    backdrop-filter: var(--glass-backdrop);
    transition: var(--transition-normal);
}

.mobile-menu-toggle:hover {
    background: var(--gradient-gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.mobile-menu-toggle:hover span {
    background: var(--background-dark);
    box-shadow: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: var(--glass-backdrop);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--chess-pattern-small);
    opacity: 0.1;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    border: 2px solid var(--border-gold);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    box-shadow: var(--shadow-sm);
    min-width: 250px;
    text-align: center;
}

.mobile-menu a:hover {
    color: var(--background-dark);
    background: var(--gradient-gold);
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

.mobile-menu a.active {
    color: var(--background-dark);
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, rgba(13, 13, 13, 0.9) 70%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.05) 0%, transparent 70%);
    animation: lightPulse 4s ease-in-out infinite alternate;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes lightPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.badge-text {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes badgeGlow {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
    100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.title-line {
    display: block;
    opacity: 0;
    animation: titleReveal 1s ease-out forwards;
}

.title-line:nth-child(1) {
    color: var(--text-primary);
    animation-delay: 0.2s;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.6s;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

.btn-modern {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-modern.btn-primary {
    background: var(--gradient-primary);
    color: var(--background-dark);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-modern.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-modern:hover .btn-glow {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.btn-modern.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color);
}

.btn-icon {
    font-size: 1.3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-neon);
    color: var(--dark-bg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-dragon-tiger {
    background: #00C851;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 200, 81, 0.3);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    min-height: 48px;
    width: 100%;
    margin: 0.5rem 0;
}

.dragon-tiger-button-wrapper {
    width: 100%;
    margin: 1rem 0;
    padding: 0.5rem;
}

.btn-dragon-tiger:hover {
    background: #00A844;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 200, 81, 0.4);
}

.btn-dragon-tiger:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 200, 81, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Section Styles */
.section {
    /* padding: 6rem 0; */
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.about-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.game-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.3);
}

.game-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.game-card:hover .game-image::before {
    transform: translateX(100%);
}

.game-info {
    padding: 2rem;
}

.game-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.game-genre {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--accent-color);
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Stats Section */
.stats {
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .hero {
        padding: 8rem 0 4rem;
        min-height: 20vh;
        height: auto;
    }
    
    .hero h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .btn-dragon-tiger {
        margin: 0.5rem 0;
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 600px;
        margin: 0 auto;
        align-items: center;
    }
    
    .dragon-tiger-section {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        max-width: 400px;
        margin-top: 2.5rem;
        padding: 1.5rem 0;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-card {
        margin: 0 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-card {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .game-card {
        margin: 0 0.5rem;
    }
    
    .about-card {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .mobile-menu a {
        font-size: 1.3rem;
        min-width: 180px;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .dragon-tiger-section {
        max-width: 100%;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .btn-dragon-tiger {
        font-size: 0.85rem;
        padding: 0.9rem 1.2rem;
        min-height: 44px;
    }
}

/* Navbar Enhancement Styles */
.nav-links li {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.nav-links a.active::after {
    background: var(--accent-color);
}

/* Filter Button Styles */
.filter-btn, .mobile-filter-btn, .card-filter-btn, .casino-filter-btn {
    margin: 0.5rem;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.filter-btn:hover, .mobile-filter-btn:hover, .card-filter-btn:hover, .casino-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

/* Navigation Link Styles */
.nav-link, .mobile-nav-link {
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-link:hover, .mobile-nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.nav-link.active, .mobile-nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Logo Enhancement */
.logo a:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Additional Responsive Styles for Specific Pages */
.card-game-hero,
.casino-hero {
    padding: 8rem 0 4rem;
}

.game-detail-card,
.casino-card {
    margin: 0 1rem 2rem;
    padding: 1.5rem;
}

.download-btn {
    margin: 0.5rem 0.5rem 0.5rem 0;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.game-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.feature-item {
    padding: 1rem;
    text-align: center;
}

.betting-chips {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    width: 45px;
    height: 45px;
    font-size: 0.8rem;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .card-game-hero,
    .casino-hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .game-detail-card,
    .casino-card {
        margin: 0 0.5rem 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .game-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
        margin: 0;
    }
    
    .download-btn {
        width: 100%;
        max-width: none;
        margin: 0.3rem 0;
        text-align: center;
    }
    
    .betting-chips {
        gap: 0.3rem;
    }
    
    .chip {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }
    
    .casino-table {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    .jackpot-banner {
        margin: 1rem 0;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .slot-machine {
        gap: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .slot-reel {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .game-detail-card,
    .casino-card {
        margin: 0 0.25rem 1rem;
        padding: 1rem 0.75rem;
    }
    
    .download-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .chip {
        width: 35px;
        height: 35px;
        font-size: 0.6rem;
    }
    
    .slot-reel {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .jackpot-banner {
        font-size: 0.8rem;
    }
    
    .jackpot-banner div {
        font-size: 1.5rem !important;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Flying Chess Section Styles */
.flying-chess-section {
    background: var(--gradient-dark);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.flying-chess-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--chess-pattern);
    opacity: 0.05;
    pointer-events: none;
}

.flying-chess-section .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-primary);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.chess-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 1rem;
    animation: chess-glow 2s ease-in-out infinite alternate;
}

.flying-chess-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.chess-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-flying-chess {
    background: var(--gradient-primary);
    border: 2px solid var(--border-gold);
    color: var(--background-dark);
    padding: 1.8rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 320px;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-flying-chess::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-flying-chess:hover::before {
    left: 100%;
}

.btn-flying-chess:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(255, 215, 0, 0.4);
    background: var(--gradient-secondary);
    border-color: var(--accent-color);
}

.btn-flying-chess:active {
    transform: translateY(-4px) scale(0.98);
}

.btn-flying-chess i {
    font-size: 1.4rem;
    color: var(--background-dark);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Chess button specific hover effects */
.chess-button-wrapper:nth-child(1) .btn-flying-chess:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
}

.chess-button-wrapper:nth-child(2) .btn-flying-chess:hover {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
}

.chess-button-wrapper:nth-child(3) .btn-flying-chess:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #8B0000 100%);
}

.chess-button-wrapper:nth-child(4) .btn-flying-chess:hover {
    background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
}

/* Responsive Design for Flying Chess Section */
@media (max-width: 768px) {
    .flying-chess-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn-flying-chess {
        min-width: 280px;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .btn-flying-chess {
        min-width: 250px;
        padding: 1.2rem 1.8rem;
        font-size: 1rem;
    }
}

/* Tutorial Cards Styles */
.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tutorial-card {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.tutorial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.tutorial-card:hover::before {
    transform: scaleX(1);
}

.tutorial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(135deg, var(--background-card) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.tutorial-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.tutorial-card h3 {
    color: var(--text-gold);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-size: 1.4rem;
}

.tutorial-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Social Links Styles */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-round);
    color: var(--background-dark);
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-gold);
    background: var(--gradient-secondary);
}

/* Enhanced Button Styles */
.btn-accent {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    border: 2px solid var(--accent-color);
}

.btn-accent:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Leaderboard Styles */
.leaderboard-display {
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
}

.leaderboard-entries > div:hover {
    transform: translateX(10px);
    transition: var(--transition-normal);
}

/* Prize Banner Animation */
.prize-banner {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .tutorials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tutorial-card {
        padding: 1.5rem;
    }
    
    .tutorial-icon {
        font-size: 2.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Modern Lighting Effects */
.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.section-title {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Enhanced Game Cards */
.game-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Enhanced About Cards */
.about-card {
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover::after {
    transform: scaleX(1);
}

.about-icon {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

/* Glowing Button Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Floating Animation for Icons */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.floating {
    animation: floatSlow 4s ease-in-out infinite;
}

/* Pulse Effect for Important Elements */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.2); }
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Enhanced Stats Animation */
.stats .stat-item {
    position: relative;
}

.stats .stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.stats .stat-item:hover::before {
    width: 120px;
    height: 120px;
}

/* Modern Scrollbar Enhancement */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* React Component Loading Section */
.react-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.react-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    transition: all 0.5s ease;
}

.loading-container.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 215, 0, 0.2);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.react-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
}

.react-content.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced React Component Styles */
.dragon-tiger-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.dragon-tiger-button-wrapper {
    display: flex;
    justify-content: center;
}

.btn-dragon-tiger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--background-dark);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.btn-dragon-tiger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-dragon-tiger:hover::before {
    left: 100%;
}

.btn-dragon-tiger:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    background: var(--gradient-secondary);
}

.btn-dragon-tiger i {
    font-size: 1.2rem;
}

/* Mobile Responsiveness for React Section */
@media (max-width: 768px) {
    .react-section {
        padding: 1.5rem 0;
    }
    
    .dragon-tiger-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .btn-dragon-tiger {
        min-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .loading-container {
        min-height: 120px;
    }
    
    .spinner {
        width: 35px;
        height: 35px;
    }
}
