/* ============================================
   BNBTiger Premium Design System v2.0
   High-End Cryptocurrency Website Design
   ============================================ */

/* CSS Custom Properties - Design Tokens */
:root {
    /* ===== PREMIUM COLOR PALETTE ===== */
    /* Primary Brand Colors */
    --color-primary: #FF5722;
    --color-primary-light: #FF7043;
    --color-primary-dark: #E64A19;
    --color-secondary: #FFD700;
    --color-accent: #C0C0C0;
    
    /* Neutral Colors */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray-50: #FAFAFA;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #EEEEEE;
    --color-gray-300: #E0E0E0;
    --color-gray-400: #BDBDBD;
    --color-gray-500: #9E9E9E;
    --color-gray-600: #757575;
    --color-gray-700: #616161;
    --color-gray-800: #424242;
    --color-gray-900: #212121;
    --color-dark-50: #1A1A1A;
    --color-dark-100: #2A2A2A;
    --color-dark-200: #3A3A3A;
    
    /* Background Colors */
    --color-bg-primary: #0A0A0A;
    --color-bg-secondary: #1A1A1A;
    --color-bg-tertiary: #2A2A2A;
    --color-bg-glass: rgba(255, 255, 255, 0.02);
    --color-bg-glass-hover: rgba(255, 255, 255, 0.05);
    
    /* Status Colors */
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #3B82F6;
    
    /* ===== TYPOGRAPHY SYSTEM ===== */
    /* Font Families */
    --font-display: 'Playfair Display', serif;
    --font-brand: 'Orbitron', monospace;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
    --text-7xl: 4.5rem;    /* 72px */
    
    /* Font Weights */
    --font-thin: 100;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* ===== SPACING SYSTEM ===== */
    --spacing-0: 0;
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;      /* 16px */
    --spacing-5: 1.25rem;   /* 20px */
    --spacing-6: 1.5rem;    /* 24px */
    --spacing-8: 2rem;      /* 32px */
    --spacing-10: 2.5rem;   /* 40px */
    --spacing-12: 3rem;     /* 48px */
    --spacing-16: 4rem;     /* 64px */
    --spacing-20: 5rem;     /* 80px */
    --spacing-24: 6rem;     /* 96px */
    --spacing-32: 8rem;     /* 128px */
    --spacing-40: 10rem;    /* 160px */
    
    /* ===== BORDER RADIUS SYSTEM ===== */
    --radius-none: 0;
    --radius-sm: 0.375rem;   /* 6px */
    --radius-base: 0.5rem;   /* 8px */
    --radius-md: 0.75rem;    /* 12px */
    --radius-lg: 1rem;       /* 16px */
    --radius-xl: 1.5rem;     /* 24px */
    --radius-2xl: 2rem;      /* 32px */
    --radius-full: 9999px;
    
    /* ===== SHADOW SYSTEM ===== */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-premium: 0 8px 32px rgba(255, 87, 34, 0.25);
    --shadow-premium-hover: 0 12px 48px rgba(255, 87, 34, 0.35);
    --shadow-glow: 0 0 20px rgba(255, 87, 34, 0.3);
    
    /* ===== ANIMATION SYSTEM ===== */
    --ease-linear: linear;
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Animation Durations */
    --duration-75: 75ms;
    --duration-100: 100ms;
    --duration-150: 150ms;
    --duration-200: 200ms;
    --duration-300: 300ms;
    --duration-500: 500ms;
    --duration-700: 700ms;
    --duration-1000: 1000ms;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Auto-Scaling Layout */
html, body {
    width: 100%;
    min-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* GPU acceleration for animations */
.hero-logo-image,
.floating-icon,
.tiger-emoji,
.stars,
.twinkling,
.web3-grid {
    will-change: transform;
    transform: translateZ(0);
}

html {
    scroll-behavior: smooth;
}

/* Enhanced Body Styles with Premium Design System */
body {
    font-family: var(--font-body);
    background: var(--color-bg-primary);
    color: var(--color-white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    font-weight: var(--font-normal);
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Premium Web3 Background System */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(255, 87, 34, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(255, 215, 0, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-dark-50) 25%, var(--color-dark-100) 50%, var(--color-dark-50) 75%, var(--color-bg-primary) 100%);
    animation: premiumGradientShift 40s ease-in-out infinite;
    z-index: -6;
    pointer-events: none;
}

/* Web3 Enhanced Background Elements */
/* Premium Starfield Effect */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(1px 1px at 25px 35px, var(--color-primary), transparent),
        radial-gradient(1px 1px at 45px 75px, var(--color-secondary), transparent),
        radial-gradient(0.5px 0.5px at 95px 45px, var(--color-accent), transparent),
        radial-gradient(0.5px 0.5px at 135px 85px, rgba(255, 87, 34, 0.6), transparent),
        radial-gradient(0.5px 0.5px at 165px 25px, rgba(255, 215, 0, 0.4), transparent);
    background-repeat: repeat;
    background-size: 300px 150px;
    animation: premiumStarfield 300s linear infinite;
    z-index: -5;
}

/* Premium Twinkling Effect */
.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(1.5px 1.5px at 35px 45px, rgba(255, 87, 34, 0.4), transparent),
        radial-gradient(1px 1px at 65px 85px, rgba(255, 215, 0, 0.6), transparent),
        radial-gradient(1px 1px at 105px 65px, rgba(192, 192, 192, 0.3), transparent);
    background-repeat: repeat;
    background-size: 400px 250px;
    animation: premiumTwinkling 120s ease-in-out infinite;
    z-index: -4;
}

/* Premium Web3 Grid Background */
.web3-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(255, 87, 34, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 87, 34, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 120px 120px, 120px 120px;
    background-position: 0 0, 0 0, 30px 30px, 30px 30px;
    animation: premiumGridMove 30s linear infinite;
    z-index: -3;
}

/* Blockchain Network Lines */
.blockchain-network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

/* Floating Crypto Elements */
.crypto-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Premium Animation Keyframes */
@keyframes premiumStarfield {
    from { transform: translateY(0px); }
    to { transform: translateY(-3000px); }
}

@keyframes premiumTwinkling {
    0%, 100% { opacity: 0.2; }
    25% { opacity: 0.6; }
    50% { opacity: 0.4; }
    75% { opacity: 0.8; }
}

@keyframes premiumGridMove {
    0% { transform: translate(0, 0); }
    25% { transform: translate(15px, 15px); }
    50% { transform: translate(30px, 30px); }
    75% { transform: translate(45px, 45px); }
    100% { transform: translate(60px, 60px); }
}

@keyframes premiumGradientShift {
    0%, 100% { 
        background: 
            radial-gradient(circle at 15% 15%, rgba(255, 87, 34, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 85% 85%, rgba(255, 215, 0, 0.06) 0%, transparent 40%),
            radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.04) 0%, transparent 60%),
            linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-dark-50) 25%, var(--color-dark-100) 50%, var(--color-dark-50) 75%, var(--color-bg-primary) 100%);
    }
    25% { 
        background: 
            radial-gradient(circle at 75% 25%, rgba(255, 87, 34, 0.1) 0%, transparent 45%),
            radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.08) 0%, transparent 45%),
            radial-gradient(circle at 60% 40%, rgba(192, 192, 192, 0.06) 0%, transparent 50%),
            linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-dark-100) 25%, var(--color-dark-200) 50%, var(--color-dark-100) 75%, var(--color-bg-primary) 100%);
    }
    50% { 
        background: 
            radial-gradient(circle at 60% 80%, rgba(255, 87, 34, 0.07) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.09) 0%, transparent 50%),
            radial-gradient(circle at 80% 60%, rgba(192, 192, 192, 0.05) 0%, transparent 55%),
            linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-dark-200) 25%, var(--color-dark-50) 50%, var(--color-dark-200) 75%, var(--color-bg-primary) 100%);
    }
    75% { 
        background: 
            radial-gradient(circle at 30% 70%, rgba(255, 87, 34, 0.09) 0%, transparent 42%),
            radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.07) 0%, transparent 42%),
            radial-gradient(circle at 20% 90%, rgba(192, 192, 192, 0.04) 0%, transparent 58%),
            linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-dark-50) 25%, var(--color-dark-100) 50%, var(--color-dark-50) 75%, var(--color-bg-primary) 100%);
    }
}

/* Web3 Pulse Animations */
@keyframes web3Pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes cryptoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

@keyframes networkPulse {
    0%, 100% { stroke-dashoffset: 0; opacity: 0.3; }
    50% { stroke-dashoffset: -20; opacity: 0.8; }
}

/* Premium Animation Keyframes */
@keyframes premiumRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes premiumFadeInLeft {
    from { 
        opacity: 0; 
        transform: translateX(-30px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes premiumFadeInRight {
    from { 
        opacity: 0; 
        transform: translateX(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes premiumFadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes premiumScale {
    from { 
        opacity: 0; 
        transform: scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Premium Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 87, 34, 0.1);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    padding: var(--spacing-4) 0;
    transition: all var(--duration-300) var(--ease-premium);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-8);
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    cursor: pointer;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: all var(--duration-300) var(--ease-premium);
    filter: drop-shadow(0 0 12px rgba(255, 87, 34, 0.4));
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 87, 34, 0.6));
}

.nav-logo .logo-text {
    font-family: var(--font-brand);
    font-size: var(--text-2xl);
    font-weight: var(--font-black);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-10);
    flex-wrap: nowrap;
    align-items: center;
}

.nav-menu .nav-link {
    white-space: nowrap !important;
    flex-shrink: 0;
}

/* Force AI Art link to never wrap */
a[href="ai.html"].nav-link {
    white-space: nowrap !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    word-break: keep-all !important;
    overflow: visible !important;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: var(--font-medium);
    font-size: var(--text-base);
    transition: all var(--duration-300) var(--ease-premium);
    position: relative;
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-md);
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--color-primary);
    transform: translateY(-1px);
    background: var(--color-bg-glass-hover);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transition: width var(--duration-300) var(--ease-premium);
    border-radius: var(--radius-full);
}

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

.nav-link.active {
    color: var(--color-primary);
    background: var(--color-bg-glass);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

.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 Navigation Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .nav-logo .logo-text {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 0, 51, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 107, 53, 0.3);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 12px;
        border: 1px solid transparent;
        background: rgba(255, 255, 255, 0.05);
        margin: 0.5rem 0;
        display: block;
    }
    
    .nav-link:hover,
    .nav-link.active {
        transform: translateY(0);
        background: rgba(255, 107, 53, 0.2);
        border-color: rgba(255, 107, 53, 0.5);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Nav Link Animation */
    .nav-link.slide-in {
        animation: slideInFromRight 0.3s ease forwards;
    }
    
    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Premium Container System */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

/* Hero Container - Wider for impact */
.hero-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

/* Section Spacing System */
section {
    padding: var(--spacing-32) 0;
}

section:first-of-type {
    padding-top: calc(var(--spacing-32) + 80px); /* Account for navbar */
}

/* Premium Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-20);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-4);
    letter-spacing: -0.02em;
    line-height: var(--leading-tight);
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--color-gray-400);
    font-weight: var(--font-light);
    letter-spacing: -0.01em;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Container */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .nav-link,
    .btn,
    .cta-button,
    .primary-btn,
    .secondary-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1.5rem;
    }
    
    /* Remove hover effects on touch devices */
    .nav-link:hover,
    .btn:hover,
    .cta-button:hover {
        transform: none;
    }
    
    /* Add active states for touch feedback */
    .nav-link:active,
    .btn:active,
    .cta-button:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Improve text readability */
    body {
        font-size: 16px;
        line-height: 1.6;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Optimize button sizes */
    .btn,
    .cta-button,
    .primary-btn,
    .secondary-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
        min-height: 48px;
        min-width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    /* Improve form inputs */
    input,
    textarea,
    select {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 1rem;
        border-radius: 12px;
        min-height: 48px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Optimize card layouts */
    .card,
    .feature-card,
    .nft-card {
        margin-bottom: 1.5rem;
        border-radius: 16px;
        padding: 1.5rem;
    }
    
    /* Improve spacing */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    /* Mobile-specific gallery optimizations */
    .gallery-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .gallery-container::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-track {
        display: flex;
        gap: 1rem;
        padding: 1rem;
    }
    
    .gallery-item {
        flex: 0 0 280px;
        height: 350px;
    }
    
    /* Mobile tokenomics layout */
    .tax-structure {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tax-section {
        padding: 1.5rem;
    }
    
    /* Mobile timeline */
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
    }
    
    /* Mobile FAQ */
    .faq-container {
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    /* Mobile features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mobile about content */
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* NFT Page Mobile Optimizations */
    .nft-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .nft-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .nft-collection {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .nft-card {
        aspect-ratio: 1;
    }
    
    .mint-interface {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .quantity-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .quantity-input {
        text-align: center;
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    /* Swap Page Mobile Optimizations */
    .swap-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .swap-interface {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .swap-input-group {
        margin-bottom: 1.5rem;
    }
    
    .token-input {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .token-selector {
        min-width: 120px;
        padding: 0.75rem;
    }
    
    .swap-arrow {
        margin: 1rem 0;
        font-size: 1.5rem;
    }
    
    .swap-info {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .recent-transactions {
        margin-top: 2rem;
    }
    
    .transaction-item {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    /* AI Page Mobile Optimizations */
    .ai-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .ai-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .generator-panel {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .suggestion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .suggestion-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .ai-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .history-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .history-item {
        aspect-ratio: 1;
    }
    
    .carousel-slide {
        padding: 1rem;
    }
    
    .view-controls {
        gap: 0.5rem;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    /* Further optimize text sizes */
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-tagline {
        font-size: 1rem !important;
    }
    
    /* Optimize button layouts */
    .hero-buttons,
    .button-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn,
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    /* Optimize stats display */
    .hero-stats,
    .stats-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 107, 53, 0.2);
    }
    
    /* Optimize gallery for small screens */
    .gallery-item {
        flex: 0 0 250px;
        height: 300px;
    }
    
    /* Optimize forms */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Small screen specific optimizations */
    .container {
        padding: 0 1rem;
    }
    
    /* NFT small screen */
    .nft-collection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nft-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* AI small screen */
    .ai-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .suggestion-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .suggestion-btn {
        padding: 1rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .ai-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Swap small screen */
    .swap-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Contract address mobile */
    .contract-address {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    /* Timeline mobile */
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* FAQ mobile */
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    /* Features mobile */
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
    }
    
    .nav-menu.active {
        width: 250px;
        padding: 4rem 1.5rem 2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image,
    .hero-logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* WHITEPAPER PAGE STYLES */
.whitepaper-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.9) 0%, rgba(26, 0, 51, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.whitepaper-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("");
    animation: gridMove 20s linear infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.hero-title .title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-title .title-sub {
    display: block;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 2rem 0;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.whitepaper-preview {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    animation: float 6s ease-in-out infinite;
}

.preview-pages {
    position: relative;
}

.preview-page {
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    position: relative;
}

.preview-page.page-2 {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: -1;
    opacity: 0.7;
    transform: scale(0.95);
}

.page-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.page-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
    border-radius: 8px;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.content-line {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.content-line.short {
    width: 60%;
}

.content-block {
    height: 100px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    margin-top: 2rem;
}

.content-chart {
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 210, 63, 0.1) 100%);
    border-radius: 8px;
    margin-bottom: 2rem;
    position: relative;
}

.content-chart::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #ff6b35;
    border-radius: 1px;
}

.preview-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Table of Contents */
.toc-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.toc-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

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

.toc-item:hover::before {
    left: 100%;
}

.toc-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.toc-item.active {
    background: rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

.toc-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    min-width: 60px;
}

.toc-content h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.toc-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.toc-arrow {
    margin-left: auto;
    color: #ff6b35;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.toc-item:hover .toc-arrow {
    transform: translateX(5px);
}

/* Whitepaper Sections */
.whitepaper-section {
    padding: 6rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.whitepaper-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.whitepaper-section:nth-child(even) {
    background: rgba(0, 0, 0, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.1);
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.section-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Content Grids */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-text h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-text h3:first-child {
    margin-top: 0;
}

.content-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.highlight-list li::before {
    content: '🐅';
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-list strong {
    color: #ff6b35;
}

/* Statistics Cards */
.content-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.overview-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.overview-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-10px);
}

.overview-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.overview-item h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.overview-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Relaunch Story */
.relaunch-story {
    margin-top: 4rem;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.relaunch-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-item i {
    color: #ff6b35;
}

/* Tokenomics */
.tokenomics-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.token-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.detail-value {
    color: white;
    font-weight: 600;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    word-break: break-all;
}

.tax-structure {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.tax-breakdown {
    display: grid;
    gap: 2rem;
}

.tax-type h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tax-items {
    display: grid;
    gap: 0.8rem;
}

.tax-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.tax-percentage {
    background: #ff6b35;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 50px;
    text-align: center;
}

.tax-description {
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

/* Mechanism Grid */
.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mechanism-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mechanism-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.mechanism-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.mechanism-item h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.mechanism-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Architecture */
.architecture-overview {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.arch-item h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.tech-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 0.8rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
}

.tech-feature i {
    color: #ff6b35;
}

.security-list {
    display: grid;
    gap: 1.5rem;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.security-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.security-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Roadmap Timeline */
.roadmap-timeline {
    position: relative;
    margin: 3rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b35, rgba(255, 107, 53, 0.3));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-marker {
    background: #ff6b35;
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.timeline-item.active .timeline-marker {
    background: #ffd23f;
    border-color: #ffd23f;
    box-shadow: 0 0 20px rgba(255, 210, 63, 0.5);
    animation: pulse 2s infinite;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateX(10px);
}

.timeline-date {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
}

.timeline-item.completed li::before {
    content: '✅';
    background: none;
    font-size: 0.8rem;
    width: auto;
    height: auto;
    top: 0;
}

.timeline-item.active li::before {
    background: #ffd23f;
    content: '🔄';
    font-size: 0.8rem;
    width: auto;
    height: auto;
    top: 0;
}

.timeline-item:not(.completed):not(.active) li::before {
    content: '📋';
    background: none;
    font-size: 0.8rem;
    width: auto;
    height: auto;
    top: 0;
}

/* Governance */
.governance-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.governance-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.governance-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-10px);
}

.governance-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.governance-item h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.governance-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.community-stats {
    margin-top: 4rem;
}

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

/* Whitepaper Illustrations */
.whitepaper-illustration {
    margin: 2rem 0;
    text-align: center;
}

.section-illustration {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.section-illustration.large {
    max-width: 800px;
}

.section-illustration:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #ff6b35;
}

.illustration-caption {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.illustration-caption i {
    color: #ff6b35;
}

.section-illustration {
    cursor: pointer;
}

.section-illustration.loaded {
    animation: fadeIn 0.5s ease;
}

.section-illustration.error {
    opacity: 0.5;
    filter: grayscale(100%);
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.show {
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.lightbox-caption {
    text-align: center;
    margin-top: 1rem;
    color: white;
}

.lightbox-caption h3 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

.lightbox-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lightbox-action-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.lightbox-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* AI Image Generation */
.generate-image-section {
    margin: 2rem 0;
}

.btn-ai {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-ai:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-placeholder.large {
    min-height: 300px;
}

.image-placeholder:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.placeholder-content {
    color: rgba(255, 255, 255, 0.6);
}

.placeholder-content i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    display: block;
}

.placeholder-content p {
    margin: 0;
    font-size: 1.1rem;
}

/* Generating State */
.generating-state {
    color: white;
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 1rem auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ffd23f);
    border-radius: 2px;
    animation: loading-progress 3s ease-in-out infinite;
}

@keyframes loading-progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Generated Image */
.generated-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.generated-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.image-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.generated-image-container:hover .image-actions {
    opacity: 1;
}

.image-action-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-action-btn:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

/* Error State */
.error-state {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.error-state i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    display: block;
}

/* Download Section */
.download-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 210, 63, 0.1) 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.download-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.download-features {
    display: grid;
    gap: 1rem;
}

.download-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.download-features .feature-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
}

.download-actions {
    text-align: center;
}

.btn.large {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
}

.download-info {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Reading Progress */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ffd23f);
    width: 0%;
    transition: width 0.3s ease;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 107, 53, 0.5);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-color: #4caf50;
}

.notification-error {
    border-color: #f44336;
}

.notification-info {
    border-color: #2196f3;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
}

.notification-close:hover {
    color: white;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-15deg) translateY(-20px); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

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

/* AUTO-SCALING LAYOUT - DISABLE ALL RESPONSIVE DESIGN */
/* This section overrides all responsive styles above */

/* Force auto-scaling layout on all devices */
html, body {
    width: 100% !important;
    min-width: 1200px !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
}

/* Override all containers */
.container,
.hero-container {
    width: 1200px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Keep nav-container flexible for proper navigation display */
.nav-container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

/* Force desktop layout */
.hero-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
    text-align: left !important;
}

.hero-left {
    text-align: left !important;
}

.hero-stats {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem !important;
    justify-content: flex-start !important;
}

.hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
    justify-content: flex-start !important;
}

/* Force desktop navigation */
.nav-menu {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    padding: 0 !important;
    right: auto !important;
}

.mobile-menu-toggle {
    display: none !important;
}

.mobile-menu-overlay {
    display: none !important;
}

/* Force desktop grid layouts */
.features-grid,
.about-content,
.nft-collection,
.ai-showcase,
.history-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
}

.tax-structure {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
}

/* Force desktop gallery */
.gallery-track {
    display: flex !important;
    gap: 1rem !important;
    padding: 2rem !important;
}

.gallery-item {
    flex: 0 0 300px !important;
    height: 400px !important;
    min-width: 300px !important;
}

/* Force desktop forms */
.form-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
}

.suggestion-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: 0.8rem !important;
}

/* Force desktop buttons */
.btn,
.cta-button,
.primary-btn,
.secondary-btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    min-height: auto !important;
    min-width: auto !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

/* Force desktop text sizes */
.section-title {
    font-size: 2.5rem !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.section-subtitle {
    font-size: 1.2rem !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
}

.hero-title {
    font-size: 3rem !important;
    text-align: left !important;
}

.hero-tagline {
    font-size: 1.2rem !important;
}

/* Force desktop contract address */
.contract-address {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    text-align: center !important;
    font-size: 1rem !important;
    word-break: break-all !important;
}

/* Force desktop timeline */
.timeline-content h3 {
    font-size: 1.5rem !important;
}

.timeline-content p {
    font-size: 1rem !important;
}

/* Force desktop FAQ */
.faq-question h3 {
    font-size: 1.2rem !important;
}

/* Force FAQ display */
.faq {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-container {
    display: block !important;
    visibility: visible !important;
}

.faq-item {
    display: block !important;
    visibility: visible !important;
    margin-bottom: 1rem !important;
}

.faq-question {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-answer {
    display: block !important;
    visibility: visible !important;
}

.faq-item:first-child .faq-answer {
    max-height: 200px !important;
    padding: 1.5rem 2rem !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.faq-item.active .faq-answer {
    max-height: 200px !important;
    padding: 1.5rem 2rem !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* Force desktop features */
.feature-card h3 {
    font-size: 1.5rem !important;
}

.feature-card p {
    font-size: 1rem !important;
}

/* Disable all mobile optimizations */
.mobile-optimized * {
    all: unset !important;
}

.reduced-animations * {
    animation-duration: initial !important;
    transition-duration: initial !important;
}

.reduced-animations .stars,
.reduced-animations .twinkling,
.reduced-animations .web3-grid,
.reduced-animations .crypto-elements {
    display: block !important;
}

/* Force show all background elements */
.stars,
.twinkling,
.web3-grid,
.crypto-elements,
.blockchain-network {
    display: block !important;
}

/* Performance optimizations for low-end devices */
.reduced-animations * {
    animation-duration: 0.3s !important;
    transition-duration: 0.3s !important;
}

.reduced-animations .stars,
.reduced-animations .twinkling,
.reduced-animations .web3-grid,
.reduced-animations .crypto-elements {
    display: none !important;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .stars,
    .twinkling,
    .web3-grid,
    .crypto-elements {
        animation: none !important;
    }
}

/* Intersection Observer animations */
.about-card,
.feature-card,
.timeline-item,
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-card.animate-in,
.feature-card.animate-in,
.timeline-item.animate-in,
.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Image loading optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"].lazy-loaded {
    opacity: 1;
}

/* Gallery image specific styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Image error states */
.image-loading {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(255, 210, 63, 0.3));
    background-size: 400% 400%;
    animation: imageLoadingGradient 2s ease infinite;
    border-radius: 12px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-error,
.image-placeholder {
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.1);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes imageLoadingGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Critical resource hints */
.preload-hint {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* Hero Section */
/* Premium Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(80px + var(--spacing-16)) 0 var(--spacing-16);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.08) 0%, transparent 60%);
    animation: premiumRotate 30s linear infinite;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    z-index: 2;
}

/* Premium Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: var(--spacing-12);
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 2;
}

/* Hero Left Side */
.hero-left {
    text-align: left;
    animation: premiumFadeInLeft 1s var(--ease-premium);
}

.hero-left .tiger-mascot {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: flex-start;
}

.hero-left .mascot-container {
    justify-content: flex-start;
}

/* Premium Hero Title */
.hero-left .hero-title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: var(--font-black);
    margin-bottom: var(--spacing-6);
    text-align: left;
    line-height: var(--leading-tight);
    letter-spacing: -0.03em;
}

.hero-left .hero-tagline {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--spacing-8);
    text-align: left;
    color: var(--color-gray-300);
    letter-spacing: -0.01em;
}

.hero-left .hero-description {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--color-gray-300);
    margin-bottom: var(--spacing-12);
    text-align: left;
    max-width: 600px;
    font-weight: var(--font-normal);
    letter-spacing: -0.01em;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.hero-left .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

/* Hero Right Side */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    position: relative;
    z-index: 3;
}

.hero-logo-image {
    height: 300px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
    animation: logoFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 0 50px rgba(255, 107, 53, 0.8));
}

.logo-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: floatAround 8s ease-in-out infinite;
    opacity: 0.8;
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    right: 15%;
    animation-delay: 6s;
}

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

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-15px) rotate(270deg); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tiger Mascot */
.tiger-mascot {
    position: relative;
    margin-bottom: 2rem;
}

.mascot-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tiger-emoji {
    font-size: 6rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    cursor: pointer;
    transition: all 0.3s ease;
}

.tiger-emoji:hover {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
}

.mascot-speech-bubble {
    background: rgba(255, 255, 255, 0.95);
    color: #2d1b69;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    position: relative;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    opacity: 0;
    transform: translateX(20px);
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.mascot-speech-bubble p {
    margin: 0;
    font-size: 1rem;
}

.bubble-tail {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.95);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0; }
    50% { transform: translateY(-10px) translateX(0px); opacity: 1; }
    100% { opacity: 1; }
}

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

/* Global gradient text */
.gradient-text {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd23f, #ff6b35);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Global tagline items */
.tagline-item {
    display: inline-block;
    margin: 0 0.5rem;
    color: #ffd23f;
    text-shadow: 0 0 10px rgba(255, 210, 63, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.tagline-item:nth-child(2) { animation-delay: 0.5s; }
.tagline-item:nth-child(3) { animation-delay: 1s; }

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 210, 63, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 210, 63, 0.8), 0 0 30px rgba(255, 210, 63, 0.4); }
}

/* Premium Button System */
.btn {
    padding: var(--spacing-4) var(--spacing-8);
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    font-family: var(--font-body);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-3);
    cursor: pointer;
    transition: all var(--duration-300) var(--ease-premium);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
    min-height: 56px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-premium);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium-hover);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-bg-glass);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--color-bg-glass-hover);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.1);
}

/* Button Sizes */
.btn-sm {
    padding: var(--spacing-3) var(--spacing-6);
    font-size: var(--text-sm);
    min-height: 40px;
    border-radius: var(--radius-lg);
}

.btn-lg {
    padding: var(--spacing-6) var(--spacing-12);
    font-size: var(--text-lg);
    min-height: 64px;
    border-radius: var(--radius-2xl);
}

/* Button States */
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: var(--shadow-base) !important;
}

/* ============================================
   PREMIUM IMAGE & LAYOUT COMPONENTS
   ============================================ */

/* Global Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy Loading Optimization */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity var(--duration-300) var(--ease-premium);
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Image Component System */
.premium-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    transition: all var(--duration-300) var(--ease-premium);
}

.premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--duration-500) var(--ease-premium);
}

.premium-image:hover img {
    transform: scale(1.05);
}

.premium-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--duration-300) var(--ease-premium);
    z-index: 1;
}

.premium-image:hover::before {
    opacity: 1;
}

/* Feature Image Layout */
.feature-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-20);
    align-items: center;
    margin: var(--spacing-24) 0;
}

.feature-with-image.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-with-image.reverse .feature-content {
    order: 2;
}

.feature-with-image.reverse .feature-image {
    order: 1;
}

.feature-content {
    padding: var(--spacing-8);
}

.feature-image {
    position: relative;
    height: 400px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-700) var(--ease-premium);
}

.feature-image:hover img {
    transform: scale(1.1);
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    gap: var(--spacing-6);
    margin-top: var(--spacing-8);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) var(--spacing-4);
    background: var(--color-bg-glass);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 87, 34, 0.2);
    transition: all var(--duration-300) var(--ease-premium);
}

.highlight-item:hover {
    background: var(--color-bg-glass-hover);
    border-color: rgba(255, 87, 34, 0.4);
    transform: translateY(-2px);
}

.highlight-item i {
    font-size: var(--text-lg);
}

.highlight-item span {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-white);
}

/* Stats with Background Image */
.stats-with-bg {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("photo_2025-09-02_05-37-07.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--spacing-32) 0;
    border-radius: var(--radius-2xl);
    margin: var(--spacing-24) 0;
}

.stats-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: var(--radius-2xl);
}

/* Image Grid System */
.image-grid {
    display: grid;
    gap: var(--spacing-6);
    margin: var(--spacing-16) 0;
}

.image-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.image-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.image-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.image-grid-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-300) var(--ease-premium);
    cursor: pointer;
}

.image-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Elements */
.section-decoration {
    position: relative;
}

.section-decoration::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-full);
}

/* Premium Glass Cards */
.premium-glass-card {
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-300) var(--ease-premium);
}

.premium-glass-card:hover {
    background: var(--color-bg-glass-hover);
    border-color: rgba(255, 87, 34, 0.4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.premium-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0;
    transition: opacity var(--duration-300) var(--ease-premium);
}

.premium-glass-card:hover::before {
    opacity: 1;
}

.feature-card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: var(--radius-full);
    transform: translate(30px, 30px);
    transition: all var(--duration-300) var(--ease-premium);
}

.premium-glass-card:hover .feature-card-decoration {
    transform: translate(20px, 20px) scale(1.2);
}

/* Community Showcase */
.community-showcase {
    margin-top: var(--spacing-20);
    padding: var(--spacing-16) 0;
    position: relative;
    z-index: 2;
}

.community-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    z-index: -1;
}

/* Mobile Responsive Image Layouts */
@media (max-width: 768px) {
    .feature-with-image {
        grid-template-columns: 1fr;
        gap: var(--spacing-12);
        text-align: center;
    }
    
    .feature-with-image.reverse .feature-content,
    .feature-with-image.reverse .feature-image {
        order: initial;
    }
    
    .feature-image {
        height: 300px;
    }
    
    .image-grid-3,
    .image-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .stats-with-bg {
        background-attachment: scroll;
        margin: var(--spacing-16) 0;
        padding: var(--spacing-20) 0;
    }
    
    .feature-highlights {
        flex-direction: column;
        gap: var(--spacing-4);
    }
    
    .highlight-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .image-grid-3,
    .image-grid-4,
    .image-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .feature-image {
        height: 250px;
    }
}

/* ============================================
   NFT & SHOWCASE COMPONENTS
   ============================================ */

/* NFT Badge */
.nft-badge {
    position: absolute;
    top: var(--spacing-4);
    left: var(--spacing-4);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    animation: premiumScale 0.6s var(--ease-premium);
}

/* Mini NFT Gallery */
.mini-nft-gallery {
    display: flex;
    gap: var(--spacing-3);
    margin-top: var(--spacing-6);
    justify-content: center;
}

.mini-nft-item {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all var(--duration-300) var(--ease-premium);
}

.mini-nft-item:hover {
    border-color: var(--color-primary);
    transform: scale(1.1) translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Overlay Glow Effect */
.overlay-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(255, 87, 34, 0.2));
    opacity: 0;
    transition: opacity var(--duration-300) var(--ease-premium);
}

.premium-image:hover .overlay-glow {
    opacity: 1;
}

/* Enhanced Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4);
}

.showcase-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--spacing-4);
    color: var(--color-white);
    font-weight: var(--font-semibold);
    text-align: center;
    transform: translateY(100%);
    transition: transform var(--duration-300) var(--ease-premium);
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

/* Mobile Responsive NFT Components */
@media (max-width: 768px) {
    .mini-nft-gallery {
        gap: var(--spacing-2);
    }
    
    .mini-nft-item {
        width: 60px;
        height: 60px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-3);
    }
}

/* ============================================
   SWAP PAGE COMPONENTS
   ============================================ */

/* Swap Benefits */
.swap-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-4);
    margin-top: var(--spacing-8);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-4);
    background: var(--color-bg-glass);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 87, 34, 0.1);
    transition: all var(--duration-300) var(--ease-premium);
}

.benefit-item:hover {
    background: var(--color-bg-glass-hover);
    border-color: rgba(255, 87, 34, 0.3);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 87, 34, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
}

.benefit-item span {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-white);
    text-align: center;
}

/* Token Icon Large */
.token-icon-large {
    position: relative;
    transition: all var(--duration-300) var(--ease-premium);
}

.token-icon-large:hover {
    transform: scale(1.1);
}

/* Swap Arrow Large */
.swap-arrow-large {
    color: var(--color-primary);
    font-size: var(--text-2xl);
    animation: premiumScale 2s ease-in-out infinite;
}

/* Mobile Responsive Swap Components */
@media (max-width: 768px) {
    .swap-benefits {
        grid-template-columns: 1fr;
        gap: var(--spacing-3);
    }
    
    .benefit-item {
        flex-direction: row;
        text-align: left;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: var(--text-base);
    }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS
   ============================================ */

/* Extra Small Devices (phones) */
@media (max-width: 480px) {
    /* Typography adjustments */
    .section-title {
        font-size: var(--text-4xl);
    }
    
    .section-subtitle {
        font-size: var(--text-base);
    }
    
    /* Hero adjustments */
    .hero-left .hero-title {
        font-size: var(--text-5xl);
    }
    
    .hero-left .hero-tagline {
        font-size: var(--text-xl);
    }
    
    /* Container adjustments */
    .container {
        padding: 0 var(--spacing-4);
    }
    
    section {
        padding: var(--spacing-20) 0;
    }
    
    /* Feature highlights mobile */
    .feature-highlights {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .highlight-item {
        flex: 1 1 calc(50% - var(--spacing-2));
        min-width: 140px;
    }
    
    /* Premium glass cards mobile */
    .premium-glass-card {
        padding: var(--spacing-6);
    }
    
    /* Image grid mobile optimization */
    .image-grid {
        gap: var(--spacing-3);
    }
    
    .image-grid-item {
        min-height: 200px;
    }
}

/* Large Mobile Devices */
@media (min-width: 481px) and (max-width: 768px) {
    .section-title {
        font-size: var(--text-4xl);
    }
    
    .hero-left .hero-title {
        font-size: var(--text-5xl);
    }
    
    .feature-highlights {
        justify-content: space-between;
    }
    
    .highlight-item {
        flex: 1 1 auto;
        min-width: 120px;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 var(--spacing-6);
    }
    
    .feature-with-image {
        gap: var(--spacing-16);
    }
    
    .feature-image {
        height: 350px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .premium-image:hover img,
    .feature-image:hover img {
        transform: none;
    }
    
    .premium-image:active img,
    .feature-image:active img {
        transform: scale(1.02);
    }
    
    .image-grid-item:hover {
        transform: none;
    }
    
    .image-grid-item:active {
        transform: scale(0.98);
    }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .premium-image,
    .feature-image,
    .showcase-item {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .stars,
    .twinkling,
    .web3-grid,
    .blockchain-network,
    .crypto-elements {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .premium-glass-card {
        background: white;
        border: 1px solid #ccc;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #ff6b35;
    border-bottom: 2px solid #ff6b35;
    transform: rotate(45deg);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #ffd23f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Tiger Gallery Section */
.tiger-gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9) 0%, rgba(45, 27, 105, 0.8) 50%, rgba(74, 20, 140, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.tiger-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("8e8d084f000148b27254dd7f71181b848b9d8abb.svg");
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
    padding: 2rem;
}

.gallery-item {
    min-width: 300px;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 210, 63, 0.1));
}

.gallery-item:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(0.8) saturate(1.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.4);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd23f;
    text-shadow: 0 0 10px rgba(255, 210, 63, 0.5);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.gallery-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.gallery-btn:active {
    transform: scale(0.95);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

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

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd23f;
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===== PREMIUM TOKENOMICS SECTION ===== */

.premium-tokenomics {
    padding: var(--spacing-32) 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    position: relative;
}

.premium-tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 87, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Token Overview Grid */
.token-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-20);
}

.token-overview-card {
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    display: flex;
    align-items: center;
    gap: var(--spacing-6);
    transition: all var(--duration-300) var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.token-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity var(--duration-300) var(--ease-premium);
}

.token-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 87, 34, 0.4);
}

.token-overview-card:hover::before {
    opacity: 1;
}

.token-overview-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    color: var(--color-white);
    flex-shrink: 0;
}

.token-overview-card .card-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-gray-300);
    margin-bottom: var(--spacing-2);
}

.token-overview-card .card-value {
    font-family: var(--font-brand);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-2);
}

.token-overview-card .card-label {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    font-weight: var(--font-medium);
}

/* Contract Section */
.contract-section {
    margin-bottom: var(--spacing-20);
}

.contract-card {
    max-width: 800px;
    margin: 0 auto;
}

.contract-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-6);
}

.contract-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: var(--color-white);
}

.contract-title h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-2);
}

.contract-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--text-sm);
    color: #10B981;
    font-weight: var(--font-semibold);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

.status-dot.verified {
    background: #10B981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.contract-address-display {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-4);
    margin-bottom: var(--spacing-6);
}

.contract-address {
    font-family: var(--font-mono);
    font-size: var(--text-base);
    color: var(--color-white);
    flex: 1;
    word-break: break-all;
}

.premium-copy-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-3) var(--spacing-4);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all var(--duration-200) var(--ease-premium);
}

.premium-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contract-links {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
}

.contract-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    color: var(--color-gray-300);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    padding: var(--spacing-3) var(--spacing-4);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--duration-200) var(--ease-premium);
}

.contract-link:hover {
    color: var(--color-primary);
    border-color: rgba(255, 87, 34, 0.4);
    transform: translateY(-2px);
}

/* Tax Structure Modern */
.tax-structure-modern {
    margin-bottom: var(--spacing-20);
}

.tax-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.tax-header h3 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-4);
}

.tax-description {
    font-size: var(--text-lg);
    color: var(--color-gray-300);
    max-width: 600px;
    margin: 0 auto;
}

.tax-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-8);
}

.tax-card {
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    transition: all var(--duration-300) var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.tax-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity var(--duration-300) var(--ease-premium);
}

.buy-tax-card::before {
    background: linear-gradient(90deg, #10B981, #34D399);
}

.sell-tax-card::before {
    background: linear-gradient(90deg, #EF4444, #F87171);
}

.tax-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 87, 34, 0.4);
}

.tax-card:hover::before {
    opacity: 1;
}

.tax-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-8);
}

.tax-type-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: var(--color-white);
}

.buy-tax-card .tax-type-icon {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.sell-tax-card .tax-type-icon {
    background: linear-gradient(135deg, #EF4444, #F87171);
}

.tax-type-info h4 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-2);
}

.tax-rate-display {
    font-family: var(--font-brand);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--color-primary);
}

.tax-breakdown-visual {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.tax-breakdown-item {
    position: relative;
    padding: var(--spacing-4);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 87, 34, 0.1);
    transition: all var(--duration-200) var(--ease-premium);
}

.tax-breakdown-item:hover {
    border-color: rgba(255, 87, 34, 0.3);
    transform: translateX(4px);
}

.breakdown-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: var(--radius-full);
}

.liquidity-bar { background: linear-gradient(180deg, #3B82F6, #1D4ED8); }
.buyback-bar { background: linear-gradient(180deg, #8B5CF6, #6D28D9); }
.marketing-bar { background: linear-gradient(180deg, #F59E0B, #D97706); }
.charity-bar { background: linear-gradient(180deg, #10B981, #047857); }

.breakdown-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-2);
}

.breakdown-label {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--color-white);
}

.breakdown-percentage {
    font-family: var(--font-mono);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--color-primary);
}

.breakdown-description {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    font-style: italic;
}

/* Distribution Section */
.distribution-section {
    margin-bottom: var(--spacing-16);
}

.distribution-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.distribution-header h3 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-4);
}

.distribution-description {
    font-size: var(--text-lg);
    color: var(--color-gray-300);
    max-width: 600px;
    margin: 0 auto;
}

.distribution-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.distribution-chart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.distribution-donut {
    width: 200px;
    height: 200px;
    transform: rotate(-90deg);
}

.chart-center {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chart-center-value {
    font-family: var(--font-brand);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
}

.chart-center-label {
    font-size: var(--text-base);
    color: var(--color-gray-300);
    font-weight: var(--font-semibold);
}

.distribution-legend {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-4);
    background: var(--color-bg-glass);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-md);
}

.community-color {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.legend-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-1);
}

.legend-label {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--color-white);
}

.legend-percentage {
    font-family: var(--font-mono);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--color-primary);
}

.legend-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    margin-top: var(--spacing-4);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.feature-item i {
    font-size: var(--text-base);
}

.feature-item .fa-times-circle {
    color: #EF4444;
}

.feature-item .fa-check-circle {
    color: #10B981;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .token-overview-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .token-overview-card {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-4);
    }
    
    .tax-cards-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .distribution-visual {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
        text-align: center;
    }
    
    .contract-address-display {
        flex-direction: column;
        gap: var(--spacing-3);
    }
    
    .contract-links {
        flex-direction: column;
        gap: var(--spacing-3);
    }
}

@media (max-width: 480px) {
    .tax-header h3,
    .distribution-header h3 {
        font-size: var(--text-3xl);
    }
    
    .token-overview-card .card-value {
        font-size: var(--text-2xl);
    }
    
    .tax-rate-display {
        font-size: var(--text-3xl);
    }
    
    .distribution-donut {
        width: 150px;
        height: 150px;
    }
    
    .chart-center-value {
        font-size: var(--text-3xl);
    }
}
    margin-bottom: 1rem;
    color: #ffd23f;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #ff6b35;
    word-break: break-all;
}

.copy-btn {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid #ff6b35;
    border-radius: 8px;
    color: #ff6b35;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
}

.copy-btn:hover {
    background: rgba(255, 107, 53, 0.4);
    transform: scale(1.1);
}

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

.tax-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.tax-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd23f;
}

.tax-rate {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.tax-breakdown {
    margin-top: 2rem;
}

.tax-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tax-item:last-child {
    border-bottom: none;
}

.tax-label {
    color: rgba(255, 255, 255, 0.8);
}

.tax-percent {
    color: #ff6b35;
    font-weight: 700;
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.3) 0%, rgba(26, 0, 51, 0.5) 100%);
    position: relative;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff6b35, #ffd23f, #ff6b35);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #ffd23f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.timeline-item.active .timeline-marker {
    background: linear-gradient(45deg, #ff6b35, #ffd23f);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 50px rgba(255, 107, 53, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    width: 45%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.timeline-content h3 {
    color: #ffd23f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ffd23f;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.1);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.feature-card h3 {
    color: #ffd23f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(45, 27, 105, 0.6) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-question h3 {
    color: #ffd23f;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.faq-item:first-child .faq-answer {
    max-height: 200px !important;
    padding: 1.5rem 2rem !important;
    opacity: 1 !important;
}

.faq-item:first-child {
    background: rgba(255, 107, 53, 0.1) !important;
    border-left: 4px solid #ff6b35 !important;
}

.faq-item:first-child .faq-question {
    color: #ff6b35 !important;
}

.faq-item:first-child .faq-question i {
    transform: rotate(180deg) !important;
    color: #ff6b35 !important;
}

.faq-item.active .faq-answer {
    max-height: 200px !important;
    padding: 1.5rem 2rem !important;
    opacity: 1 !important;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* NFT Section */
.nft-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.3) 0%, rgba(26, 0, 51, 0.5) 100%);
    position: relative;
}

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

.nft-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nft-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.nft-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    margin-bottom: 0.5rem;
}

.nft-stat .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.nft-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.nft-card.featured {
    border: 2px solid #ffd23f;
    box-shadow: 0 0 30px rgba(255, 210, 63, 0.3);
}

.nft-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.nft-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.nft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.nft-card:hover .nft-image img {
    transform: scale(1.1);
}

.nft-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.nft-rarity {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nft-rarity.common {
    background: rgba(128, 128, 128, 0.9);
    color: white;
}

.nft-rarity.uncommon {
    background: rgba(30, 255, 0, 0.9);
    color: black;
}

.nft-rarity.rare {
    background: rgba(0, 112, 255, 0.9);
    color: white;
}

.nft-rarity.epic {
    background: rgba(163, 53, 238, 0.9);
    color: white;
}

.nft-rarity.legendary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: black;
}

.nft-info {
    padding: 1.5rem;
}

.nft-info h3 {
    color: #ffd23f;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.nft-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.nft-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
}

.btn-mint {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-mint:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.nft-mint-section {
    margin-top: 4rem;
    text-align: center;
}

.mint-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.mint-container h3 {
    color: #ffd23f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mint-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.mint-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: rgba(255, 107, 53, 0.4);
    transform: scale(1.1);
}

.quantity {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd23f;
    min-width: 50px;
    text-align: center;
}

.total-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

.mint-button {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* SWAP Section */
.swap-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(45, 27, 105, 0.6) 100%);
}

.swap-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.swap-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swap-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.swap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.swap-header h3 {
    color: #ffd23f;
    font-size: 1.5rem;
    font-weight: 700;
}

.swap-settings {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.swap-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff6b35;
}

.token-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.token-input-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.balance {
    cursor: pointer;
    transition: color 0.3s ease;
}

.balance:hover {
    color: #ff6b35;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.token-amount {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    outline: none;
}

.token-amount::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.token-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.token-selector:hover {
    background: rgba(255, 255, 255, 0.15);
}

.token-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.swap-arrow {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.swap-arrow i {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swap-arrow i:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: rotate(180deg);
}

.swap-info {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.swap-rate {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffd23f;
    font-weight: 600;
}

.swap-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.green {
    color: #4ade80 !important;
}

.swap-button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.swap-info-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    height: fit-content;
}

.swap-info-panel h4 {
    color: #ffd23f;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.swap-info-panel ul {
    list-style: none;
    margin-bottom: 2rem;
}

.swap-info-panel li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.swap-info-panel li i {
    color: #4ade80;
}

.quick-amounts h5 {
    color: #ffd23f;
    margin-bottom: 1rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.amount-btn {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.amount-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

/* NFT Hero Section */
.nft-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.4) 0%, rgba(26, 0, 51, 0.6) 100%);
}

.nft-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nft-hero-left {
    animation: fadeInLeft 1s ease;
}

.nft-hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.nft-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.nft-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.nft-hero-buttons {
    display: flex;
    gap: 1rem;
}

.nft-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.nft-showcase {
    position: relative;
}

.showcase-nft {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    animation: float 4s ease-in-out infinite;
}

.showcase-nft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

/* NFT Stats Section */
.nft-stats-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

/* NFT Collection */
.nft-collection {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.5) 0%, rgba(74, 20, 140, 0.3) 100%);
}

.collection-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Mint Section Enhancements */
.nft-mint-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.mint-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.mint-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-nft {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.preview-nft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.preview-rarity {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.mint-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mint-form h3 {
    color: #ffd23f;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mint-form p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.price-breakdown {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.price-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.8rem;
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.1rem;
}

.mint-info {
    text-align: center;
    margin-top: 1rem;
}

.mint-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Swap Hero Section */
.swap-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(45, 27, 105, 0.6) 100%);
}

.swap-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.swap-hero-left {
    animation: fadeInLeft 1s ease;
}

.swap-hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.swap-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.swap-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.swap-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.swap-preview {
    position: relative;
}

.preview-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.token-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.token-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.token-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swap-arrow-large {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.live-rate {
    color: #ffd23f;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Swap Main Section */
.swap-main {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.3) 0%, rgba(26, 0, 51, 0.5) 100%);
}

/* Settings Panel */
.settings-panel {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: none;
}

.settings-panel.active {
    display: block;
}

.setting-item {
    margin-bottom: 1.5rem;
}

.setting-item label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.slippage-options {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.slippage-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slippage-btn.active,
.slippage-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    color: #ff6b35;
}

.custom-slippage {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    width: 80px;
    outline: none;
}

.deadline-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deadline-input input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    width: 80px;
    outline: none;
}

/* Enhanced Token Input */
.token-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.token-symbol {
    font-weight: 700;
    color: white;
}

.token-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.token-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.action-btn {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 107, 53, 0.3);
}

/* Market Info */
.info-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section:last-child {
    border-bottom: none;
}

.info-section h4,
.info-section h5 {
    color: #ffd23f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.market-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-list li i {
    color: #4ade80;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.badge i {
    color: #ff6b35;
}

/* Recent Transactions */
.recent-transactions {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.transactions-table {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1.5fr 0.5fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    align-items: center;
}

.table-header {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: #ffd23f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.swap-type {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.swap-type.buy {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.swap-type.sell {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.tx-link {
    color: #ff6b35;
    transition: all 0.3s ease;
}

.tx-link:hover {
    color: #ffd23f;
    transform: scale(1.1);
}

/* Token Modal */
.token-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.95) 0%, rgba(45, 27, 105, 0.95) 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: #ffd23f;
    margin: 0;
}

.close {
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff6b35;
}

.token-search {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.token-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    outline: none;
    font-size: 1rem;
}

.token-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.token-list {
    max-height: 300px;
    overflow-y: auto;
}

.token-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.token-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.token-option img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.token-details {
    display: flex;
    flex-direction: column;
}

.token-details .symbol {
    font-weight: 700;
    color: white;
}

.token-details .name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* AI Hero Section */
.ai-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.8) 0%, rgba(74, 20, 140, 0.6) 100%);
}

.ai-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ai-hero-left {
    animation: fadeInLeft 1s ease;
}

.ai-hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.ai-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.ai-hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ai-hero-buttons {
    display: flex;
    gap: 1rem;
}

.ai-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.ai-showcase {
    position: relative;
    width: 400px;
    height: 400px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: float 6s ease-in-out infinite;
}

.showcase-item:nth-child(2) {
    animation-delay: -1.5s;
}

.showcase-item:nth-child(3) {
    animation-delay: -3s;
}

.showcase-item:nth-child(4) {
    animation-delay: -4.5s;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
}

.ai-glow-effect {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

/* AI Generator Section */
.ai-generator {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.5) 0%, rgba(45, 27, 105, 0.3) 100%);
}

.generator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.generator-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd23f;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
}

.form-group textarea:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.prompt-suggestions {
    margin-top: 1rem;
}

.suggestion-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.suggestion-label {
    color: #ffd23f;
    font-size: 1rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.random-meme-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.random-meme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.suggestion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
}

.suggestion-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: white;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(5px);
}

.suggestion-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-group select option {
    background: #2d1b69;
    color: white;
}

.quality-slider {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.quality-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    cursor: pointer;
}

.quality-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.quality-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.advanced-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.option-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff6b35;
}

.option-item label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    cursor: pointer;
    margin: 0;
}

.generation-controls {
    text-align: center;
    margin-top: 2rem;
}

.generate-btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    min-width: 200px;
}

.generation-info {
    margin-top: 1rem;
}

.generation-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Result Panel */
.result-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.result-container {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-state {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.placeholder-content i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.placeholder-content h3 {
    color: #ffd23f;
    margin-bottom: 1rem;
}

/* Loading State */
.loading-state {
    text-align: center;
    width: 100%;
}

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

.loading-brain {
    font-size: 4rem;
    color: #ff6b35;
    animation: pulse 2s infinite;
}

.loading-text h3 {
    color: #ffd23f;
    margin-bottom: 0.5rem;
}

.loading-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 3px;
    animation: loading-progress 3s ease-in-out infinite;
}

@keyframes loading-progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Result State */
.result-state {
    width: 100%;
}

.generated-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.generated-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.generated-image:hover .image-overlay {
    opacity: 1;
}

.image-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: scale(1.1);
}

.result-info h4 {
    color: #ffd23f;
    margin-bottom: 1rem;
}

.result-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.result-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.stat:last-child {
    border-bottom: none;
}

/* AI Gallery Section */
.ai-gallery {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.ai-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    color: #ffd23f;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.overlay-actions {
    display: flex;
    gap: 0.5rem;
}

.overlay-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    background: rgba(255, 107, 53, 0.8);
}

.gallery-load-more {
    text-align: center;
}

/* Generated History Section */
.generated-history {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(45, 27, 105, 0.5) 100%);
}

.history-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-controls {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    color: #ff6b35;
}

.filter-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-controls select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    outline: none;
}

.filter-controls select option {
    background: #2d1b69;
    color: white;
}

.clear-btn {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-btn:hover {
    background: rgba(239, 68, 68, 0.3);
}

/* History Grid */
.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    min-height: 200px;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.empty-state i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #ffd23f;
    margin-bottom: 1rem;
}

.history-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.history-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.history-item-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.history-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.history-item:hover .history-item-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.history-item:hover .image-overlay {
    opacity: 1;
}

.image-actions {
    display: flex;
    gap: 0.5rem;
}

.image-action-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-action-btn:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: scale(1.1);
}

.history-item-info {
    padding: 1.5rem;
}

.history-item-prompt {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.history-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.like-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.like-btn:hover,
.like-btn.liked {
    color: #ff6b35;
}

/* History Carousel */
.history-carousel {
    position: relative;
    margin: 2rem 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: rgba(255, 107, 53, 0.8);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff6b35;
    transform: scale(1.2);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-info {
    color: rgba(255, 255, 255, 0.8);
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.page-btn:hover,
.page-btn.active {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    color: #ff6b35;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-ellipsis {
    color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
}

/* AI Stats Section */
.ai-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.3) 0%, rgba(26, 0, 51, 0.5) 100%);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd23f;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-link.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.3);
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 15px 30px rgba(29, 161, 242, 0.3);
}

.social-icon {
    font-size: 3rem;
    color: #ff6b35;
}

.social-link.telegram .social-icon {
    color: #0088cc;
}

.social-link.twitter .social-icon {
    color: #1da1f2;
}

.social-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-info p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5));
}

.footer-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd23f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
}

.footer-text p:first-child {
    font-weight: 600;
    color: #ffd23f;
    margin-bottom: 0.5rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transform: translateX(400px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.notification.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 0.6rem;
        flex-wrap: nowrap;
    }
    
    .nav-link {
        font-size: 0.9rem !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        padding: var(--spacing-2) var(--spacing-3) !important;
        display: inline-block !important;
    }
    
    /* Logo responsive */
    .logo-image {
        height: 35px;
    }
    
    .hero-logo-image {
        height: 80px;
    }
    
    .footer-logo-image {
        height: 40px;
    }
    
    .nav-logo .logo-text,
    .footer-logo .logo-text {
        font-size: 1.2rem;
    }
    
    /* Hero responsive */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-left .tiger-mascot {
        justify-content: center;
    }
    
    .hero-left .mascot-container {
        justify-content: center;
    }
    
    .hero-left .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-left .hero-tagline {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-left .hero-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-left .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-logo-image {
        height: 200px;
    }
    
    .logo-glow-effect {
        width: 300px;
        height: 300px;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    /* Gallery responsive */
    .gallery-item {
        min-width: 250px;
        height: 300px;
    }
    
    .gallery-track {
        padding: 1rem;
    }
    
    .gallery-controls {
        margin-top: 1rem;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .tax-structure {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .contract-address {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .notification {
        right: 1rem;
        left: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .tiger-emoji {
        font-size: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tax-rate {
        font-size: 2rem;
    }
    
    /* Gallery mobile */
    .gallery-item {
        min-width: 200px;
        height: 250px;
    }
    
    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .nav-menu {
        gap: 0.4rem;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .nav-link {
        font-size: 0.8rem !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        padding: var(--spacing-2) var(--spacing-3) !important;
        display: inline-block !important;
    }
    
    /* Logo mobile */
    .logo-image {
        height: 30px;
    }
    
    .hero-logo-image {
        height: 60px;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .nav-logo .logo-text,
    .footer-logo .logo-text {
        font-size: 1rem;
    }
    
    /* Hero mobile */
    .hero-left .hero-title {
        font-size: 2rem;
    }
    
    .hero-left .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-logo-image {
        height: 150px;
    }
    
    .logo-glow-effect {
        width: 250px;
        height: 250px;
    }
    
    .floating-icon {
        font-size: 1.2rem;
    }
    
    /* NFT mobile */
    .nft-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nft-image {
        height: 250px;
    }
    
    .mint-container {
        padding: 1.5rem;
    }
    
    .quantity-selector {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    /* SWAP mobile */
    .swap-card {
        padding: 1.5rem;
    }
    
    .token-input {
        padding: 1rem;
    }
    
    .token-amount {
        font-size: 1.2rem;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
    }
    
    /* Mascot responsive */
    .mascot-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mascot-speech-bubble {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    /* Timeline responsive */
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
    }
    
    /* Features responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    /* FAQ responsive */
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
    
    /* NFT responsive */
    .nft-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .nft-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .mint-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    /* SWAP responsive */
    .swap-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .swap-info-panel {
        order: -1;
    }
}

/* ===== SIMPLE FAQ STYLES - ALWAYS VISIBLE ===== */
.faq-section {
    padding: 5rem 0 !important;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(255, 107, 53, 0.05)) !important;
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
}

.simple-faq-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.simple-faq-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    border-radius: 15px !important;
    margin-bottom: 2rem !important;
    padding: 2rem !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.simple-faq-item:hover {
    background: rgba(255, 107, 53, 0.1) !important;
    border-color: rgba(255, 107, 53, 0.4) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2) !important;
}

.simple-faq-question {
    color: #ff6b35 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin: 0 0 1rem 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.simple-faq-answer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.simple-faq-answer p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Special styling for first FAQ item */
.simple-faq-item:first-child {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 210, 63, 0.1)) !important;
    border: 2px solid rgba(255, 107, 53, 0.4) !important;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3) !important;
}

.simple-faq-item:first-child .simple-faq-question {
    color: #ffd23f !important;
    font-size: 1.5rem !important;
}

/* ===== ENHANCED ROADMAP STYLES ===== */
/* Roadmap Goals Styling */
.roadmap-goals {
    margin: 1.5rem 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
}

.goal {
    padding: 0.8rem 1.2rem !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border-left: 4px solid transparent !important;
    margin: 0 !important;
}

.goal.completed {
    background: rgba(76, 175, 80, 0.15) !important;
    border-left-color: #4CAF50 !important;
    color: #81C784 !important;
}

.goal.future {
    background: rgba(255, 107, 53, 0.1) !important;
    border-left-color: #ff6b35 !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.goal:hover {
    transform: translateX(5px) !important;
    background: rgba(255, 107, 53, 0.2) !important;
}

/* Enhanced timeline content for new roadmap */
.timeline-content h3 {
    color: #ffd23f !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
}

.timeline-status {
    display: inline-block !important;
    background: linear-gradient(135deg, #ff6b35, #ffd23f) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-top: 1rem !important;
}

/* ===== ENHANCED HERO VISUAL SHOWCASE ===== */

/* 3D Logo Card Effect */
.hero-visual-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    perspective: 1000px;
}

.hero-logo-3d {
    position: relative;
    z-index: 10;
}

.logo-card {
    width: 450px;
    height: 450px;
    position: relative;
    transform-style: preserve-3d;
    animation: logoFloat3D 6s ease-in-out infinite;
    cursor: pointer;
    transition: transform var(--duration-500) var(--ease-premium);
}

.logo-card:hover {
    animation-play-state: paused;
    transform: rotateY(180deg) scale(1.05);
}

.logo-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform var(--duration-700) var(--ease-premium);
}

.logo-front, .logo-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 87, 34, 0.3);
    box-shadow: var(--shadow-glow);
}

.logo-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-front .hero-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 30px rgba(255, 87, 34, 0.5));
}

.logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--spacing-6);
    transform: translateY(100%);
    transition: transform var(--duration-300) var(--ease-premium);
}

.logo-front:hover .logo-overlay {
    transform: translateY(0);
}

.logo-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-2);
}

.logo-tagline {
    font-size: var(--text-sm);
    color: var(--color-secondary);
    font-weight: var(--font-medium);
}

.logo-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    align-items: center;
}

.stat-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-bg-glass);
    border: 2px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-300) var(--ease-premium);
}

.stat-circle.featured {
    border-color: var(--color-secondary);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 87, 34, 0.1) 100%);
    transform: scale(1.1);
}

.stat-number {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--color-white);
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--color-gray-300);
}

/* Floating Mini Gallery */
.floating-mini-gallery {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    height: 750px;
    pointer-events: none;
    z-index: 5;
}

.mini-card {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: var(--radius-2xl);
    background: var(--color-bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 87, 34, 0.2);
    overflow: hidden;
    cursor: pointer;
    pointer-events: auto;
    transition: all var(--duration-400) var(--ease-premium);
    animation: floatOrbit 20s linear infinite;
    box-shadow: var(--shadow-lg);
}

.mini-card:nth-child(1) {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.mini-card:nth-child(2) {
    bottom: 20%;
    left: 10%;
    animation-delay: -7s;
}

.mini-card:nth-child(3) {
    top: 60%;
    right: 5%;
    animation-delay: -14s;
}

.mini-card:hover {
    transform: scale(1.2);
    z-index: 20;
    box-shadow: var(--shadow-glow);
}

.mini-card img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    transition: transform var(--duration-300) var(--ease-premium);
}

.mini-card:hover img {
    transform: scale(1.1);
}

.mini-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-white);
    font-size: var(--text-xs);
    padding: var(--spacing-2);
    text-align: center;
    font-weight: var(--font-medium);
}

/* Premium Floating Elements */
.premium-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-orb {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: orbFloat 8s ease-in-out infinite;
    cursor: pointer;
    pointer-events: auto;
    transition: all var(--duration-300) var(--ease-premium);
}

.floating-orb:hover {
    transform: scale(1.3);
    box-shadow: var(--shadow-glow);
}

.orb-primary {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.3) 0%, rgba(255, 87, 34, 0.1) 100%);
    color: var(--color-primary);
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.orb-secondary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 100%);
    color: var(--color-secondary);
    top: 25%;
    right: 15%;
    animation-delay: -2s;
}

.orb-accent {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.3) 0%, rgba(192, 192, 192, 0.1) 100%);
    color: var(--color-accent);
    bottom: 30%;
    left: 15%;
    animation-delay: -4s;
}

.orb-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4) 0%, rgba(255, 87, 34, 0.2) 100%);
    color: var(--color-secondary);
    bottom: 15%;
    right: 20%;
    animation-delay: -6s;
}

/* Particle System */
.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-secondary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s linear infinite;
}

.particle[data-speed="slow"] { animation-duration: 20s; }
.particle[data-speed="medium"] { animation-duration: 15s; }
.particle[data-speed="fast"] { animation-duration: 10s; }

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: -5s; }
.particle:nth-child(3) { left: 50%; animation-delay: -10s; }
.particle:nth-child(4) { left: 70%; animation-delay: -15s; }
.particle:nth-child(5) { left: 90%; animation-delay: -20s; }

/* Enhanced Keyframes */
@keyframes logoFloat3D {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    25% { transform: translateY(-20px) rotateX(5deg) rotateY(5deg); }
    50% { transform: translateY(-10px) rotateX(-5deg) rotateY(-5deg); }
    75% { transform: translateY(-15px) rotateX(3deg) rotateY(3deg); }
}

@keyframes floatOrbit {
    0% { transform: rotate(0deg) translateX(250px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(250px) rotate(-360deg); }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Mobile Responsive for Enhanced Hero */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
        text-align: center;
    }
    
    .hero-visual-showcase {
        perspective: 800px;
    }
    
    .logo-card {
        width: 320px;
        height: 320px;
    }
    
    .floating-mini-gallery {
        width: 500px;
        height: 500px;
    }
    
    .mini-card {
        width: 100px;
        height: 100px;
    }
    
    .floating-orb {
        width: 45px;
        height: 45px;
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .logo-card {
        width: 260px;
        height: 260px;
    }
    
    .floating-mini-gallery {
        width: 350px;
        height: 350px;
    }
    
    .mini-card {
        width: 75px;
        height: 75px;
    }
    
    .floating-orb {
        width: 35px;
        height: 35px;
        font-size: var(--text-sm);
    }
    
    .particle {
        width: 2px;
        height: 2px;
    }
}
