/* Dragon Tiger Club - Modern Gaming Website Styles */

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

/* CSS Variables for consistent theming */
:root {
    /* Dragon Tiger Gaming Color Palette */
    --primary-color: #FF6B35; /* Dragon Orange */
    --secondary-color: #1E3A8A; /* Deep Blue */
    --accent-color: #10B981; /* Emerald Green */
    --tertiary-color: #374151; /* Cool Gray */
    --background-dark: #0D0D0D; /* Almost Black */
    --background-light: #1A1A1A; /* Dark Gray */
    --background-card: rgba(26, 26, 26, 0.95);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-gold: #F59E0B;
    --border-color: #333333;
    --border-gold: #F59E0B;
    --success-color: #00C851;
    --warning-color: #FF8800;
    --danger-color: #FF4444;
    --info-color: #33B5E5;
    
    /* Vibrant Gradients */
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);
    --gradient-secondary: linear-gradient(135deg, #06B6D4 0%, #0EA5E9 50%, #3B82F6 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #F97316 50%, #EF4444 100%);
    --gradient-dark: linear-gradient(135deg, #0F0F23 0%, #1E1B4B 50%, #312E81 100%);
    --gradient-neon: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 50%, #EC4899 100%);
    --gradient-gaming: linear-gradient(135deg, #7C3AED 0%, #06B6D4 50%, #F59E0B 100%);
    
    /* Glass Effects */
    --glass-bg: rgba(139, 92, 246, 0.1);
    --glass-border: rgba(139, 92, 246, 0.2);
    --glass-backdrop: blur(20px);
    
    /* Typography */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Inter', sans-serif;
    --font-accent: 'Poppins', sans-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%;
    
    /* Animations */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Gaming Patterns */
    --gaming-pattern: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    --gaming-pattern-small: radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    --chess-pattern: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 92, 246, 0.05) 10px, rgba(139, 92, 246, 0.05) 20px);
    
    /* 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(245, 158, 11, 0.3);
    --shadow-dragon: 0 8px 25px rgba(255, 107, 53, 0.4);
    --shadow-neon: 0 4px 20px rgba(16, 185, 129, 0.3);
    --shadow-primary: 0 10px 25px rgba(139, 92, 246, 0.3);
    --shadow-secondary: 0 10px 25px rgba(6, 182, 212, 0.3);
    --shadow-accent: 0 10px 25px rgba(245, 158, 11, 0.3);
    
    /* 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);
    
    /* Gaming Patterns */
    --gaming-pattern: repeating-conic-gradient(var(--game-light) 0% 25%, var(--game-dark) 0% 50%) 50% / 60px 60px;
    --gaming-pattern-small: repeating-conic-gradient(var(--game-light) 0% 25%, var(--game-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: linear-gradient(135deg, #0F0F23 0%, #1E1B4B 50%, #312E81 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 49%, rgba(255, 107, 53, 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(--gradient-primary);
    border-radius: 4px;
}

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

/* Enhanced Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: var(--glass-backdrop);
    border-bottom: 3px solid transparent;
    border-image: var(--gradient-primary) 1;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.modern-navbar {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(30, 27, 75, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

/* Modern Enhanced Logo Styles */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.modern-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon.gradient-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
    animation: pulse-glow 3s ease-in-out infinite;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text.primary {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text.secondary {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9)); }
}

/* Legacy logo styles for fallback */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--primary-color));
    animation: dragon-glow 3s ease-in-out infinite alternate;
}

.logo-text {
    font-size: 1.8rem;
    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;
    white-space: nowrap;
}

@keyframes dragon-glow {
    0% { 
        text-shadow: 0 0 10px var(--primary-color);
        filter: drop-shadow(0 0 5px var(--primary-color));
    }
    50% {
        text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--accent-color);
        filter: drop-shadow(0 0 10px var(--primary-color)) drop-shadow(0 0 15px var(--accent-color));
    }
    100% { 
        text-shadow: 0 0 10px var(--primary-color);
        filter: drop-shadow(0 0 5px var(--primary-color));
    }
}

/* Modern Navigation Links */
.modern-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.nav-item {
    position: relative;
}

.modern-nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

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

.modern-nav-link:hover::before {
    left: 100%;
}

.modern-nav-link:hover {
    color: white;
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.modern-nav-link.active {
    color: #06B6D4;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.1));
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

/* Legacy Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

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

.nav-links a.active {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.nav-icon {
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.nav-text {
    font-family: var(--font-secondary);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition-fast);
    margin-left: 0.25rem;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: var(--glass-backdrop);
    border: 2px solid var(--border-gold);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    list-style: none;
    padding: 1rem 0;
    margin: 0.5rem 0 0 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    border-radius: 0;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: none;
}

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

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

/* Enhanced Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: var(--glass-bg);
    border: 2px solid var(--border-gold);
    border-radius: var(--border-radius-md);
    backdrop-filter: var(--glass-backdrop);
    transition: var(--transition-normal);
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.05);
    box-shadow: var(--shadow-dragon);
    border-color: var(--primary-color);
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    margin: 4px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.mobile-menu-toggle:hover .hamburger-line {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 7px);
    background: var(--accent-color);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
    background: var(--accent-color);
}

/* Enhanced 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.98) 0%, rgba(26, 26, 26, 0.98) 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(--gaming-pattern-small);
    opacity: 0.1;
    pointer-events: none;
}

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

.mobile-menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 2rem 0;
    border-bottom: 2px solid var(--border-gold);
    margin-bottom: 2rem;
}

.mobile-menu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.mobile-menu-close {
    background: none;
    border: 2px solid var(--border-gold);
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    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);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-nav-link:hover {
    color: var(--background-dark);
    background: var(--gradient-gold);
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

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

.mobile-nav-icon {
    font-size: 1.3rem;
    min-width: 1.5rem;
}

.mobile-nav-text {
    flex: 1;
}

/* Mobile Categories Section */
.mobile-categories {
    margin: 1rem 0;
    border: 2px solid var(--border-gold);
    border-radius: var(--border-radius-lg);
    background: rgba(255, 107, 53, 0.05);
    overflow: hidden;
}

.mobile-category-header {
    background: var(--gradient-gold);
    color: var(--background-dark);
    padding: 1rem 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.mobile-category-links {
    padding: 0.5rem;
}

.category-link {
    margin: 0.5rem 0;
    border-color: rgba(255, 107, 53, 0.3) !important;
    background: rgba(255, 107, 53, 0.05) !important;
}

.category-link:hover {
    background: rgba(255, 107, 53, 0.2) !important;
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    min-height: 2vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: dragon-pulse 4s ease-in-out infinite;
}

@keyframes dragon-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 107, 53, 0.3);
    animation: dragon-title-glow 2s ease-in-out infinite alternate;
}

@keyframes dragon-title-glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8)); }
}

.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-primary);
    color: white;
    border: none;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    border: none;
}

.btn-accent {
    background: var(--gradient-neon);
    color: white;
    border: none;
}

.btn-dragon-tiger {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.5px;
    min-height: 56px;
    max-width: 320px;
    width: 100%;
    margin: 0.5rem 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.btn-dragon-tiger.modern-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-dragon-tiger .fas {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.btn-dragon-tiger .btn-shimmer {
    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;
    pointer-events: none;
}

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

.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(255, 107, 53, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary:hover {
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

.btn-accent:hover {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.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-primary);
    -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(--background-card);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 107, 53, 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(255, 107, 53, 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-primary);
}

.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(--background-card);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 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(255, 107, 53, 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-primary);
}

.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(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

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

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

.tournament-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.tournament-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.tournament-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tournament-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tournament-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tournament-status.live {
    background: var(--gradient-neon);
    color: white;
    animation: pulse-glow 2s ease-in-out infinite;
}

.tournament-status.upcoming {
    background: var(--gradient-secondary);
    color: white;
}

.tournament-status.exclusive {
    background: var(--gradient-gold);
    color: var(--background-dark);
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }
    50% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
}

.tournament-info {
    padding: 0 2rem 2rem;
}

.tournament-prize {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.tournament-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tournament-btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
}

/* 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(255, 107, 53, 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;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        font-size: 1.6rem;
    }
    
    .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); }
}

/* Modern Dropdown Styles */
.modern-dropdown {
    position: relative;
}

.modern-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 12px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.modern-dropdown:hover .modern-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    list-style: none;
    margin: 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-link::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.5s ease;
}

.dropdown-link:hover::before {
    left: 100%;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    color: white;
    transform: translateX(8px);
}

.dropdown-icon {
    font-size: 1.4rem;
    margin-right: 16px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2px;
}

.dropdown-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.dropdown-arrow {
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-arrow i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.modern-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.modern-dropdown:hover .dropdown-arrow i {
    color: #FFD700;
}

/* Modern Mobile Menu Toggle */
.modern-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modern-hamburger .hamburger-box {
    width: 28px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.modern-hamburger .hamburger-line {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 4px;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.3);
}

.modern-hamburger .hamburger-line:nth-child(1) {
    top: 0;
}

.modern-hamburger .hamburger-line:nth-child(2) {
    top: 10px;
}

.modern-hamburger .hamburger-line:nth-child(3) {
    top: 20px;
}

.modern-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.modern-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.modern-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* Modern Navbar Responsive */
@media (max-width: 768px) {
    .modern-nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo-text.primary {
        font-size: 1.2rem;
    }
    
    .logo-text.secondary {
        font-size: 0.8rem;
    }
    
    .logo-icon.gradient-icon {
        font-size: 2rem;
    }
}

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