/* Modern Airdrop Landing Page Styles */

:root {
    --primary-color: #fbbf24;
    --secondary-color: #f59e0b;
    --accent-color: #3b82f6;
    --bg-dark: #0a0a0f;
    --bg-card: #1a1a2e;
    --bg-card-hover: #2a2a3e;
    --text-primary: #ffffff;
    --text-secondary: #b8b8d4;
    --success-color: #10b981;
    --error-color: #ef4444;
    --gradient-primary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-mall: linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #ef4444 50%, #3b82f6 75%, #10b981 100%);
    --gold-glow: 0 0 30px rgba(251, 191, 36, 0.5), 0 0 60px rgba(251, 191, 36, 0.3);
    --premium-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(251, 191, 36, 0.2);
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
    --neon-green: #00ff00;
    --neon-yellow: #ffff00;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main Wrapper Background - Mall/Marketplace Style */
.main-wrapper {
    background: 
        radial-gradient(ellipse at top left, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Metaverse Background */
.metaverse-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-gradient-animated {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(239, 68, 68, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 40%);
    animation: gradientRotate 40s linear infinite;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

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

.metaverse-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(251, 191, 36, 0.6), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(251, 191, 36, 0.5), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(59, 130, 246, 0.5), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(251, 191, 36, 0.6), transparent);
    background-size: 200% 200%, 150% 150%, 180% 180%, 160% 160%, 170% 170%;
    background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 20% 80%;
    animation: particlesFloat 50s linear infinite;
    will-change: background-position;
    opacity: 0.5;
    transform: translateZ(0); /* GPU acceleration */
}

@keyframes particlesFloat {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 20% 80%, 60% 40%;
    }
    100% {
        background-position: 100% 100%, 0% 0%, 150% 150%, 180% 80%, 120% 20%, 160% 140%;
    }
}

/* Premium Stars Effect - Static for Performance */
.main-wrapper::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, rgba(251, 191, 36, 0.4), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(59, 130, 246, 0.3), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(251, 191, 36, 0.4), transparent);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 20% 80%;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

/* Gaming Grid Overlay - Mall Style with Neon */
.gaming-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(251, 191, 36, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.03) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px;
    background-position: 0 0, 0 0;
    opacity: 0.3;
    animation: gridMove 40s linear infinite;
    will-change: background-position;
    transform: translateZ(0); /* GPU acceleration */
}

@keyframes gridMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 60px 60px, 60px 60px;
    }
}

/* Metaverse Animals with Coins - Mobile Optimized */
.metaverse-animals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.animal-coin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    will-change: transform;
}

.animal-hand {
    font-size: 2.5em;
    animation: handWave 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.coin-in-hand {
    font-size: 1.8em;
    animation: coinBounce 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

.animal-1 {
    top: 15%;
    left: 10%;
    animation: animalFloat1 12s ease-in-out infinite;
}

.animal-2 {
    top: 60%;
    right: 15%;
    animation: animalFloat2 15s ease-in-out infinite;
    animation-delay: -3s;
}

.animal-3 {
    bottom: 20%;
    left: 20%;
    animation: animalFloat3 18s ease-in-out infinite;
    animation-delay: -6s;
}

.animal-4 {
    top: 40%;
    right: 25%;
    animation: animalFloat4 14s ease-in-out infinite;
    animation-delay: -9s;
}

@keyframes handWave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

@keyframes coinBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.1);
    }
}

@keyframes animalFloat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -40px) rotate(5deg);
    }
}

@keyframes animalFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-40px, 30px) rotate(-5deg);
    }
}

@keyframes animalFloat3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(35px, -35px) rotate(5deg);
    }
}

@keyframes animalFloat4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, 40px) rotate(-5deg);
    }
}

/* Floating Token Coins - Mobile Optimized */
.floating-tokens {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.token-coin {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.9), rgba(245, 158, 11, 0.7));
    box-shadow: 
        0 0 20px rgba(251, 191, 36, 0.6),
        inset 0 0 15px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
    will-change: transform;
    animation: coinFloat 8s ease-in-out infinite;
}

.token-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.token-2 {
    top: 65%;
    right: 20%;
    animation-delay: -2.5s;
}

.token-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: -5s;
}

@keyframes coinFloat {
    0%, 100% {
        transform: translate(0, 0) rotateY(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -30px) rotateY(90deg) scale(1.1);
    }
    50% {
        transform: translate(-15px, -50px) rotateY(180deg) scale(0.95);
    }
    75% {
        transform: translate(25px, -25px) rotateY(270deg) scale(1.05);
    }
}

.token-coin::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    top: 0;
    left: 0;
}

.token-1 {
    top: 20%;
    left: 10%;
    animation: floatToken1 15s ease-in-out infinite;
}

.token-2 {
    top: 60%;
    right: 15%;
    animation: floatToken2 18s ease-in-out infinite;
    animation-delay: -5s;
}

.token-3 {
    bottom: 20%;
    left: 20%;
    animation: floatToken3 20s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes floatToken1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, -60px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, -30px) rotate(270deg) scale(1.05);
    }
}

@keyframes floatToken2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(-50px, 50px) rotate(120deg) scale(1.15);
    }
    66% {
        transform: translate(30px, -40px) rotate(240deg) scale(0.95);
    }
}

@keyframes floatToken3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(50px, -50px) rotate(180deg) scale(1.2);
    }
}

.coin-spin {
    animation: coinRotate 3s linear infinite;
    transform-style: preserve-3d;
}

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

/* Token Particles - Disabled for Performance */
.token-particles {
    display: none; /* Disabled for better performance */
}

.token-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8), transparent);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
    will-change: transform, opacity;
}

.token-particles .particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation: particleFloat1 12s ease-in-out infinite;
}

.token-particles .particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation: particleFloat2 15s ease-in-out infinite;
    animation-delay: -2s;
}

.token-particles .particle:nth-child(3) {
    left: 70%;
    top: 30%;
    animation: particleFloat3 14s ease-in-out infinite;
    animation-delay: -4s;
}

.token-particles .particle:nth-child(4) {
    left: 50%;
    top: 80%;
    animation: particleFloat4 16s ease-in-out infinite;
    animation-delay: -6s;
}

.token-particles .particle:nth-child(5) {
    left: 80%;
    top: 50%;
    animation: particleFloat5 13s ease-in-out infinite;
    animation-delay: -8s;
}

.token-particles .particle:nth-child(6) {
    left: 20%;
    top: 70%;
    animation: particleFloat6 17s ease-in-out infinite;
    animation-delay: -10s;
}

.token-particles .particle:nth-child(7) {
    left: 90%;
    top: 10%;
    animation: particleFloat7 11s ease-in-out infinite;
    animation-delay: -1s;
}

.token-particles .particle:nth-child(8) {
    left: 5%;
    top: 50%;
    animation: particleFloat8 18s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes particleFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -150px) scale(1.5);
        opacity: 1;
    }
}

@keyframes particleFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-120px, 100px) scale(1.3);
        opacity: 0.9;
    }
}

@keyframes particleFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(80px, -120px) scale(1.4);
        opacity: 1;
    }
}

@keyframes particleFloat4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-90px, -80px) scale(1.2);
        opacity: 0.95;
    }
}

@keyframes particleFloat5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(110px, 90px) scale(1.6);
        opacity: 1;
    }
}

@keyframes particleFloat6 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-70px, -100px) scale(1.3);
        opacity: 0.9;
    }
}

@keyframes particleFloat7 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(60px, 130px) scale(1.5);
        opacity: 1;
    }
}

@keyframes particleFloat8 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(130px, -70px) scale(1.4);
        opacity: 0.95;
    }
}

/* Metaverse Orbs - Mobile Optimized */
.metaverse-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.metaverse-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    will-change: transform, opacity;
    opacity: 0.3;
    animation: orbPulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5), rgba(59, 130, 246, 0.2), transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4), rgba(245, 158, 11, 0.2), transparent);
    bottom: 15%;
    right: 10%;
    animation-delay: -2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4), rgba(16, 185, 129, 0.2), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -4s;
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -20px) scale(1.2);
        opacity: 0.4;
    }
}

.metaverse-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    will-change: transform, opacity;
    opacity: 0.4;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.4), rgba(65, 105, 225, 0.15), transparent);
    top: 10%;
    left: 5%;
    animation: orbFloat1 35s ease-in-out infinite;
    transform: translateZ(0); /* GPU acceleration */
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.35), rgba(255, 140, 0, 0.2), transparent);
    bottom: 15%;
    right: 10%;
    animation: orbFloat2 45s ease-in-out infinite;
    animation-delay: -10s;
    transform: translateZ(0); /* GPU acceleration */
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(50, 205, 50, 0.35), rgba(50, 205, 50, 0.15), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    animation: orbFloat3 30s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes orbFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translate(150px, 100px) scale(1.2);
        opacity: 0.5;
    }
    66% {
        transform: translate(-100px, 150px) scale(0.9);
        opacity: 0.3;
    }
}

@keyframes orbFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-200px, -150px) scale(1.3);
        opacity: 0.6;
    }
}

@keyframes orbFloat3 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4) rotate(180deg);
        opacity: 0.5;
    }
}

/* Hexagonal Pattern - Disabled for Performance */
.gaming-hex-pattern {
    display: none; /* Disabled for better performance */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Performance: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .bg-gradient-animated,
    .metaverse-particles,
    .gaming-grid,
    .metaverse-orbs .orb,
    .animal-coin,
    .floating-tokens .token-coin {
        animation: none !important;
        will-change: auto !important;
    }
}

/* Performance: Disable animations on low-end devices */
.low-end-device .bg-gradient-animated,
.low-end-device .metaverse-particles,
.low-end-device .gaming-grid,
.low-end-device .metaverse-orbs .orb,
.low-end-device .animal-coin,
.low-end-device .floating-tokens .token-coin {
    animation: none !important;
    will-change: auto !important;
    opacity: 0.2 !important;
}

/* Performance Optimization - Mobile Friendly */
@media (max-width: 768px) {
    /* Disable heavy animations on mobile for better performance */
    .bg-gradient-animated {
        animation: none;
        opacity: 0.3;
    }
    
    .metaverse-particles {
        animation: none;
        opacity: 0.2;
    }
    
    .gaming-grid {
        animation: none;
        opacity: 0.2;
    }
    
    .metaverse-orbs .orb {
        animation: none;
        opacity: 0.3;
    }
    
    /* Smaller animals on mobile */
    .animal-hand {
        font-size: 1.8em;
    }
    
    .coin-in-hand {
        font-size: 1.3em;
    }
    
    .animal-coin {
        transform: scale(0.7); /* Smaller on mobile */
    }
    
    /* Fewer floating coins on mobile */
    .token-coin {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
    
    .token-3 {
        display: none; /* Hide one coin on mobile */
    }
    
    /* Smaller orbs on mobile */
    .metaverse-orbs .orb {
        filter: blur(30px);
    }
    
    .orb-1 {
        width: 150px;
        height: 150px;
    }
    
    .orb-2 {
        width: 180px;
        height: 180px;
    }
    
    .orb-3 {
        width: 120px;
        height: 120px;
    }
    
    /* Hide one animal on mobile */
    .animal-4 {
        display: none;
    }
    
    .gaming-grid {
        opacity: 0.2; /* Reduce opacity on mobile */
    }
    
    .stat-card::after,
    .feature-card::after,
    .tokenomics-card::before,
    .level-card::before {
        display: none; /* Hide decorative elements on mobile */
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .floating-tokens,
    .token-particles,
    .metaverse-orbs,
    .gaming-hex-pattern,
    .gaming-grid,
    .main-wrapper::before,
    .main-wrapper::after {
        animation: none !important;
    }
    
    .coin-spin {
        animation: none !important;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(42, 42, 62, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(251, 191, 36, 0.2);
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 0;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 10px;
        gap: 10px;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    margin: 0;
    background: rgba(26, 26, 46, 0.95);
    border: 2px solid rgba(251, 191, 36, 0.5);
    border-radius: 16px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: fit-content;
    min-height: 70px;
    width: fit-content;
}

@media (max-width: 768px) {
    .logo-container {
        padding: 10px 14px;
        border-radius: 12px;
        min-height: 60px;
    }
}

/* Mobile-friendly image base styles */
/* All images with data-image-key should be responsive by default */
img[data-image-key] {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Logo - Mobile-friendly responsive styles (Bigger & Better on Mobile) */
.logo-img,
.responsive-logo {
    width: 100%;
    max-width: 150px; /* Desktop: 150px */
    height: auto;
    object-fit: contain; /* Pura logo dikhe, no crop, preserve aspect ratio */
    filter: drop-shadow(var(--gold-glow));
    border: none;
    border-radius: 8px;
    padding: 0;
    background: transparent;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    margin: 0 auto; /* Center logo on mobile */
}

/* Mobile (≤768px): Logo bigger - 120px for attractive look */
@media screen and (max-width: 768px) {
    .logo-img,
    .responsive-logo {
        max-width: 120px; /* Mobile: 120px (thoda bada, attractive) */
        max-height: 80px;
        margin: 0 auto; /* Center with margin adjustment */
    }
    
    /* Logo container center adjustment for mobile */
    .logo-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Extra small phones (≤480px): Logo still good size */
@media screen and (max-width: 480px) {
    .logo-img,
    .responsive-logo {
        max-width: 110px; /* Small mobile: 110px (still attractive) */
        max-height: 70px;
    }
}

/* Fallback logo background if image fails */
.logo-container:has(.logo-img[style*="display: none"]) .logo-text {
    display: block !important;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.logo-img:hover {
    filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.9));
    transform: scale(1.08);
}

.logo-container:hover {
    border-color: rgba(251, 191, 36, 0.7);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(251, 191, 36, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

.logo-text {
    font-size: 1.5em;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    background: 
        radial-gradient(circle at 30% 50%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at center, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    overflow: hidden; /* Allow banner to break out for full bleed */
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
}

/* Mobile: Hero padding adjustment for full bleed banner (no padding/margin extra) */
/* Fix: Banner ko hero section mein full bleed banao taaki mobile pe dhamakedaar lage */
@media screen and (max-width: 768px) {
    .hero {
        padding: 0; /* Remove all padding on mobile to allow full bleed banner */
        padding-bottom: 30px; /* Keep bottom padding for content only */
        margin-left: 0;
        margin-right: 0;
    }
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 1.05;
    }
}

/* Background banner effect (absolute positioned, behind content) - only if no img */
.hero-banner:empty {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    animation: bannerFloat 20s ease-in-out infinite;
}

/* Actual banner image container - relative positioning for proper mobile display */
.hero-banner:has(img),
.hero-banner img {
    position: relative;
    z-index: 1;
}

/* Banner - Mobile-friendly responsive styles (Perfect Fit, No Cut Off, No Stretch) */
/* Fix: Banner ko mobile pe full width aur height auto banao taaki pura dikhe (no cut, no stretch) */
.hero-banner-img,
.responsive-banner,
img[data-image-key="banner"] {
    width: 100%;
    height: auto; /* Responsive height, preserve aspect ratio - no stretch */
    object-fit: cover; /* Full width, crop if needed, beautiful full-screen feel */
    object-position: center;
    max-width: 100%;
    display: block;
    aspect-ratio: auto; /* Preserve original aspect ratio */
}

/* Banner container - Full bleed on mobile, no padding/margin extra */
.hero-banner {
    width: 100%;
    overflow: hidden; /* Prevent horizontal scroll */
    position: relative;
    margin: 0 !important; /* No extra margin - force override */
    padding: 0 !important; /* No extra padding - force override */
}

/* Desktop: Banner normal width (laptop pe sahi full dikhta hai) */
@media screen and (min-width: 769px) {
    .hero-banner {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-banner-img,
    .responsive-banner,
    img[data-image-key="banner"] {
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: auto;
    }
}

/* Mobile (≤768px): Banner full width, height auto, pura dikhe (Strong Media Query) */
/* Fix: Mobile mein banner pura dikhe, no cut-off, no stretch - strong !important flags */
@media screen and (max-width: 768px) {
    /* Hero section padding remove karo taaki banner full bleed ho */
    .hero {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Banner container full bleed - no padding/margin extra */
    .hero-banner {
        width: 100vw !important; /* Full viewport width - full bleed */
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important; /* Center full-bleed trick */
        margin-right: calc(-50vw + 50%) !important;
        left: 0 !important;
        right: 0 !important;
        padding: 0 !important;
    }
    
    /* Banner image - full width, height auto, pura dikhe (no cut, no stretch) */
    /* Strong !important flags taaki koi bhi conflicting style override na kare */
    .hero-banner-img,
    .responsive-banner,
    img[data-image-key="banner"] {
        width: 100vw !important; /* Full viewport width */
        max-width: 100vw !important; /* Max width ensure */
        height: auto !important; /* Auto height - aspect ratio preserve, no stretch */
        min-height: 200px !important; /* Minimum height taaki mobile pe acha lage (30vh alternative) */
        object-fit: cover !important; /* Full width, beautiful crop, no cut off */
        object-position: center !important; /* Center important content */
        display: block !important;
        aspect-ratio: auto !important; /* Preserve original aspect ratio */
    }
}

/* Extra small phones (≤480px): Banner still full bleed, pura dikhe */
@media screen and (max-width: 480px) {
    .hero-banner-img,
    .responsive-banner,
    img[data-image-key="banner"] {
        width: 100vw !important; /* Full width */
        max-width: 100vw !important;
        height: auto !important; /* Auto height - preserve aspect ratio */
        min-height: 180px !important; /* Extra small phones ke liye slightly smaller */
        object-fit: cover !important; /* Cover - pura dikhe, no cut */
        object-position: center !important;
        aspect-ratio: auto !important; /* Preserve aspect ratio */
    }
}

/* Fallback if banner image fails */
.hero-banner:has(img[style*="display: none"]) {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 50%, transparent 100%);
}

@keyframes bannerFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 1em;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 20px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stat-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 62, 0.95) 100%);
    padding: 18px 25px;
    border-radius: 16px;
    border: 2px solid rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(251, 191, 36, 0.3),
        inset 0 0 20px rgba(251, 191, 36, 0.05);
    backdrop-filter: blur(10px);
}

.stat-card::after {
    content: '🛍️';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.2em;
    opacity: 0.3;
    animation: shopIconFloat 3s ease-in-out infinite;
}

@keyframes shopIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(10deg);
    }
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 140, 0, 0.3), rgba(255, 215, 0, 0.3));
    background-size: 200% 200%;
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    animation: borderGlow 3s ease-in-out infinite;
}

.stat-card::after {
    content: '💰';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5em;
    opacity: 0.2;
    animation: coinBounce 2s ease-in-out infinite;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 
        var(--premium-shadow),
        0 0 40px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, rgba(42, 42, 62, 0.98) 0%, rgba(58, 58, 78, 0.98) 100%);
}

.stat-card:hover::after {
    opacity: 0.6;
    transform: scale(1.2);
}

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

.stat-card:hover::after {
    opacity: 0.5;
    transform: scale(1.2) rotate(15deg);
}

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

@keyframes coinBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(10deg);
    }
}

.stat-value {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-top: 5px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    border: none;
    padding: 14px 35px;
    font-size: 1em;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3), 0 0 0 1px rgba(251, 191, 36, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '⚡';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: left 0.5s ease;
    opacity: 0;
}

.btn-primary:hover:not(:disabled)::before {
    left: 15px;
    opacity: 1;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5), 0 0 0 2px rgba(251, 191, 36, 0.3);
    filter: brightness(1.1);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    }
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 35px;
    font-size: 1em;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

.btn-copy {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.btn-copy:hover {
    border-color: var(--primary-color);
}

/* User Status Section */
.user-status-section {
    padding: 60px 20px;
}

.status-card {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    backdrop-filter: blur(10px);
}

.status-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.status-header h2 {
    font-size: 2em;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

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

.status-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.status-label {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.status-value {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1em;
}

.rewards-breakdown {
    background: rgba(255, 215, 0, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.rewards-breakdown h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reward-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.reward-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
    border-top: 2px solid var(--primary-color);
}

.referral-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.referral-link-container {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.referral-link-container input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--text-primary);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9em;
}

.referral-info {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-top: 10px;
}

/* Vesting Timeline */
.vesting-section {
    padding: 30px 20px;
    background: 
        linear-gradient(180deg, rgba(65, 105, 225, 0.05) 0%, rgba(50, 205, 50, 0.03) 50%, rgba(65, 105, 225, 0.05) 100%),
        radial-gradient(ellipse at top, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
    background-size: 100% 100%, 200% 200%;
    animation: vestingBg 10s ease infinite;
    position: relative;
}

.vesting-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(65, 105, 225, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

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

.section-title {
    font-size: 2em;
    text-align: center;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1em;
}

.vesting-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 25px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + 30px);
    background: rgba(255, 215, 0, 0.3);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-marker.locked {
    background: rgba(255, 68, 68, 0.2);
    color: var(--error-color);
    border: 2px solid var(--error-color);
}

.timeline-marker.unlock {
    background: rgba(50, 205, 50, 0.2);
    color: var(--success-color);
    border: 2px solid var(--success-color);
}

.timeline-content {
    flex: 1;
    background: var(--bg-card);
    padding: 18px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.timeline-content h3 {
    font-size: 1.2em;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.timeline-desc {
    color: var(--text-secondary);
    margin-top: 5px;
}

.vesting-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.summary-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.summary-card h3 {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.summary-card p {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Referral Diagram */
.referral-diagram-section {
    padding: 30px 20px;
}

.referral-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 25px;
}

.referral-level {
    width: 100%;
}

.level-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 62, 0.95) 100%);
    padding: 22px;
    border-radius: 20px;
    border: 2px solid rgba(251, 191, 36, 0.4);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.level-card::before {
    content: '🏪';
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 1.3em;
    opacity: 0.3;
    animation: storeFloat 3s ease-in-out infinite;
}

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

.level-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 
        var(--premium-shadow),
        0 0 40px rgba(251, 191, 36, 0.4);
}

.level-card:hover::before {
    opacity: 0.6;
    transform: scale(1.2);
}

.level-card.you {
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
}

.level-card.l1 {
    border-color: #ff6347;
}

.level-card.l2 {
    border-color: #ff8c00;
}

.level-card.l3 {
    border-color: #32cd32;
}

.level-card i {
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.level-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.level-card p {
    color: var(--text-secondary);
    margin: 5px 0;
}

.level-card .example {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 10px;
}

.referral-arrow {
    font-size: 2em;
    color: var(--primary-color);
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.ref-stat-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.ref-stat-card h3 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ref-stat-card p {
    color: var(--text-secondary);
}

/* Tokenomics */
.tokenomics-section {
    padding: 30px 20px;
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 140, 0, 0.03) 50%, rgba(255, 215, 0, 0.05) 100%),
        radial-gradient(circle at 50% 50%, rgba(65, 105, 225, 0.03) 0%, transparent 70%);
    background-size: 200% 200%, 100% 100%;
    animation: tokenomicsBg 12s ease infinite;
    position: relative;
    overflow: hidden;
}

.tokenomics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: tokenomicsRotate 20s linear infinite;
    pointer-events: none;
}

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

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

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.tokenomics-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 62, 0.95) 100%);
    padding: 22px;
    border-radius: 20px;
    border: 2px solid rgba(251, 191, 36, 0.35);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(10px);
}

.tokenomics-card::after {
    content: '💰';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5em;
    opacity: 0.2;
    animation: moneyFloat 4s ease-in-out infinite;
}

@keyframes moneyFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(15deg);
    }
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.tokenomics-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        var(--premium-shadow),
        0 0 40px rgba(251, 191, 36, 0.4);
    border-color: rgba(251, 191, 36, 0.6);
    border-width: 3px;
}

.tokenomics-card:hover::after {
    opacity: 0.5;
    transform: scale(1.3) rotate(20deg);
}

.tokenomics-card:hover::before {
    width: 300px;
    height: 300px;
}

.tokenomics-card h3 {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.token-value {
    font-size: 2em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.token-label {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.distribution-chart {
    max-width: 900px;
    margin: 0 auto;
}

.distribution-chart h3 {
    margin-bottom: 35px;
    text-align: center;
    font-size: 1.8em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Goal-Style Graph */
.goal-graph-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.goal-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 62, 0.95) 100%);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(251, 191, 36, 0.2);
}

.goal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.goal-icon {
    font-size: 1.8em;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
    animation: iconBounce 2s ease-in-out infinite;
}

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

.goal-label {
    flex: 1;
    font-size: 1.2em;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.goal-percentage {
    font-size: 1.4em;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.goal-bar-wrapper {
    position: relative;
}

.goal-bar-bg {
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(251, 191, 36, 0.2);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.goal-bar-fill {
    height: 100%;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    width: 0;
    animation: fillBar 2s ease-out forwards;
    box-shadow: 
        0 0 20px rgba(251, 191, 36, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.goal-item:hover .goal-bar-fill {
    box-shadow: 
        0 0 30px rgba(251, 191, 36, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

@keyframes fillBar {
    from {
        width: 0;
    }
    to {
        width: var(--fill-width);
    }
}

.goal-coins {
    display: flex;
    gap: 5px;
    align-items: center;
    animation: coinsFloat 3s ease-in-out infinite;
}

@keyframes coinsFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(10deg);
    }
}

.coin-icon {
    font-size: 1.2em;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.8));
    animation: coinSpin 4s linear infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

@keyframes coinSpin {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    50% {
        transform: rotateY(180deg) scale(1.1);
    }
    100% {
        transform: rotateY(360deg) scale(1);
    }
}

.goal-value {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95em;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    z-index: 2;
    pointer-events: none;
}

/* Set fill widths for each goal */
.goal-item:nth-child(1) .goal-bar-fill {
    --fill-width: 10%;
}

.goal-item:nth-child(2) .goal-bar-fill {
    --fill-width: 20%;
}

.goal-item:nth-child(3) .goal-bar-fill {
    --fill-width: 30%;
}

.goal-item:nth-child(4) .goal-bar-fill {
    --fill-width: 25%;
}

.goal-item:nth-child(5) .goal-bar-fill {
    --fill-width: 15%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .goal-item {
        padding: 20px;
    }
    
    .goal-header {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .goal-icon {
        font-size: 1.5em;
    }
    
    .goal-label {
        font-size: 1em;
    }
    
    .goal-percentage {
        font-size: 1.2em;
    }
    
    .goal-bar-bg {
        height: 40px;
    }
    
    .coin-icon {
        font-size: 1em;
    }
    
    .goal-value {
        font-size: 0.85em;
    }
}

/* Roadmap */
/* Token Price & Future Growth Section */
.token-price-section {
    padding: 80px 20px;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(59, 130, 246, 0.06) 50%, rgba(16, 185, 129, 0.08) 100%),
        radial-gradient(circle at 30% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 200% 200%, 100% 100%, 100% 100%;
    animation: priceGradientShift 15s ease infinite;
    overflow: hidden;
}

@keyframes priceGradientShift {
    0%, 100% {
        background-position: 0% 50%, 30% 50%, 70% 50%;
    }
    50% {
        background-position: 100% 50%, 30% 50%, 70% 50%;
    }
}

.token-price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.token-price-section .container {
    position: relative;
    z-index: 1;
}

.token-price-section .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fbbf24 0%, #3b82f6 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.token-price-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Price Cards Grid */
.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Price Card */
.price-card {
    position: relative;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.presale-card::before {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
}

.dex-card::before {
    background: linear-gradient(135deg, #3b82f6, #2563eb, #3b82f6);
}

.future-card::before {
    background: linear-gradient(135deg, #10b981, #059669, #10b981, #3b82f6);
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
}

.price-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: -1;
}

.price-card:hover .price-card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Price Card Icon */
.price-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.presale-card .price-card-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a0a0f;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.dex-card .price-card-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.future-card .price-card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #3b82f6 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.price-card-icon i {
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

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

/* Price Card Content */
.price-card-content {
    position: relative;
    z-index: 2;
}

.price-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    margin-bottom: 15px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    display: block;
    line-height: 1.2;
    background: linear-gradient(135deg, #fbbf24 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 8px;
}

/* Future Price Styles */
.future-price {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.future-price-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.future-year {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.future-amount {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.future-amount.range {
    font-size: 1.8rem;
}

.price-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 10px;
}

/* Disclaimer */
.price-disclaimer {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 15px;
    padding: 20px 25px;
    margin: 40px auto;
    max-width: 900px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.price-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #fbbf24, #3b82f6);
}

.price-disclaimer i {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.price-disclaimer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.price-disclaimer strong {
    color: var(--text-primary);
}

/* CTA Buttons */
.price-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-join-presale,
.btn-read-tokenomics {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-join-presale {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a0a0f;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.btn-join-presale:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.btn-read-tokenomics {
    background: rgba(26, 26, 46, 0.8);
    color: var(--text-primary);
    border: 2px solid rgba(59, 130, 246, 0.5);
    backdrop-filter: blur(10px);
}

.btn-read-tokenomics:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    background: rgba(26, 26, 46, 0.95);
}

.btn-join-presale i,
.btn-read-tokenomics i {
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .token-price-section {
        padding: 50px 15px;
    }

    .token-price-section .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .token-price-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .price-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card {
        padding: 25px 20px;
    }

    .price-amount {
        font-size: 2rem;
    }

    .future-amount {
        font-size: 1.6rem;
    }

    .future-amount.range {
        font-size: 1.4rem;
    }

    .price-disclaimer {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .price-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-join-presale,
    .btn-read-tokenomics {
        width: 100%;
        justify-content: center;
    }
}

/* ===== TOKEN SALE SECTION ===== */
.token-sale-section {
    padding: 80px 20px;
    background:
        radial-gradient(ellipse at center top, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at left bottom, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at right bottom, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.token-sale-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.03) 0%, transparent 40%);
    animation: tokenSaleGlow 20s ease-in-out infinite alternate;
    pointer-events: none;
}

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

.sale-category {
    margin-bottom: 60px;
}

.sale-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    letter-spacing: 1px;
}

.sale-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 62, 0.95) 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(251, 191, 36, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.sale-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.4);
}

.sale-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(251, 191, 36, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.sale-card:hover .sale-card-glow {
    opacity: 1;
}

.sale-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.sale-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    box-shadow: var(--gold-glow);
}

.phase-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(251, 191, 36, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.coming-soon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.sale-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    line-height: 1;
}

.price-currency {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 5px;
}

.sale-allocation {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.allocation-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.allocation-value {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.sale-benefits {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.benefit-item span {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.sale-card-footer {
    text-align: center;
}

.sale-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

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

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

.coming-soon-btn {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.3);
    cursor: not-allowed;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.coming-soon-btn i {
    margin-right: 8px;
}

.buy-now-btn {
    background: var(--gradient-primary);
    color: #000;
    border: 2px solid rgba(251, 191, 36, 0.5);
    box-shadow: var(--gold-glow);
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
}

.buy-now-btn i {
    margin-right: 8px;
}

/* Private Sale Special Styling */
.private-sale-card {
    max-width: 500px;
    margin: 0 auto;
}

.private-sale-card .sale-card-icon {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

/* Presale Grid */
.presale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.presale-card {
    position: relative;
}

.presale-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.presale-card:hover::before {
    opacity: 0.3;
}

/* Phase specific colors */
.phase-1 .phase-number {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.phase-2 .phase-number {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.phase-3 .phase-number {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

/* Security Notice */
.sale-security-notice {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(42, 42, 62, 0.8) 100%);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
}

.security-notice-content {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.security-notice-content i {
    font-size: 2rem;
    color: #10b981;
    flex-shrink: 0;
}

.security-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.security-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Token Contract Details Section */
.token-details-section {
    margin-top: 50px;
    padding: 0;
}

.token-details-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.token-details-title i {
    color: #3b82f6;
    font-size: 1.4rem;
}

.token-details-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.token-details-box {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 62, 0.95) 100%);
    border-radius: 16px;
    border: 2px solid rgba(251, 191, 36, 0.2);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
}

.token-detail-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.token-detail-item.token-address-item {
    padding-bottom: 15px;
}

.token-detail-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.token-detail-label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.token-detail-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.token-address-value {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.token-value-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    flex: 1;
    min-width: 0;
}

.token-address-text {
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    width: 100%;
    box-sizing: border-box;
    user-select: all;
    cursor: text;
}

.copy-btn {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn i {
    font-size: 0.9rem;
}

.copy-btn-primary {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.copy-btn-primary:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.copy-btn.copied {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #10b981;
}

.copy-btn.copied i::before {
    content: "\f00c"; /* fa-check */
}

.copy-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.copy-btn.copied .copy-tooltip {
    opacity: 1;
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.token-detail-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.token-detail-note i {
    color: #3b82f6;
    font-size: 0.8rem;
}

.token-detail-note a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.token-detail-note a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.token-add-guide {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(42, 42, 62, 0.8) 100%);
    border-radius: 16px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
}

.guide-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-title i {
    color: #10b981;
    font-size: 1.2rem;
}

.guide-steps {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 25px;
}

.guide-steps li {
    margin-bottom: 12px;
}

.guide-steps li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.guide-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(251, 191, 36, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 20px;
}

.guide-note i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.guide-note strong {
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .token-sale-section {
        padding: 60px 15px;
    }

    .sale-category-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .sale-card {
        padding: 25px 20px;
    }

    .sale-card-header {
        margin-bottom: 20px;
    }

    .sale-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .presale-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sale-category {
        margin-bottom: 40px;
    }

    .sale-security-notice {
        padding: 25px 20px;
    }

    .security-notice-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .security-notice-content i {
        font-size: 1.5rem;
    }

    .trust-indicator {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    .notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .token-details-section {
        margin-top: 40px;
    }

    .token-details-title {
        font-size: 1.3rem;
    }

    .token-details-subtitle {
        font-size: 0.95rem;
    }

    .token-details-box {
        padding: 20px 15px;
    }

    .token-detail-item {
        padding: 15px 0;
    }

    .token-detail-label {
        font-size: 0.85rem;
    }

    .token-value-text {
        font-size: 1rem;
    }

    .token-address-text {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .copy-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .token-detail-value {
        flex-direction: column;
        align-items: flex-start;
    }

    .token-address-value {
        width: 100%;
    }

    .token-add-guide {
        padding: 20px 15px;
    }

    .guide-title {
        font-size: 1.1rem;
    }

    .guide-steps {
        font-size: 0.95rem;
        padding-left: 20px;
    }

    .guide-note {
        font-size: 0.9rem;
        padding: 12px;
    }
}

/* Trust Indicators */
.trust-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    margin-left: 8px;
}

.trust-indicator i {
    font-size: 0.7rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

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

.notification-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 62, 0.95) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--premium-shadow);
    backdrop-filter: blur(20px);
}

.notification-success .notification-content {
    border-color: rgba(16, 185, 129, 0.3);
}

.notification-success i {
    color: #10b981;
}

.notification-info .notification-content {
    border-color: rgba(59, 130, 246, 0.3);
}

.notification-info i {
    color: #3b82f6;
}

.notification-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-content span {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.roadmap-section {
    padding: 30px 20px;
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 215, 0, 0.3);
}

.roadmap-item {
    position: relative;
    margin-bottom: 20px;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--bg-dark);
}

.roadmap-date {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1em;
}

.roadmap-content {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.roadmap-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1em;
}

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

.roadmap-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.roadmap-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* FAQ */
.faq-section {
    padding: 30px 20px;
    background: 
        linear-gradient(135deg, rgba(65, 105, 225, 0.05) 0%, rgba(255, 215, 0, 0.03) 50%, rgba(65, 105, 225, 0.05) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 215, 0, 0.01) 10px,
            rgba(255, 215, 0, 0.01) 20px
        );
    background-size: 200% 200%, 40px 40px;
    animation: faqBg 15s ease infinite;
    position: relative;
}

@keyframes faqBg {
    0%, 100% {
        background-position: 0% 50%, 0 0;
    }
    50% {
        background-position: 100% 50%, 20px 20px;
    }
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid rgba(251, 191, 36, 0.25);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question h3 {
    font-size: 1.1em;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 18px 18px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 25px 20px 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-secondary);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-secondary);
}

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

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--primary-color);
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2em;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 2em;
}

.step {
    display: block;
}

.step.hidden {
    display: none;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

#captcha-container {
    margin: 20px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border-radius: 8px;
}

/* Features Section */
.features-section {
    padding: 30px 20px;
    background: rgba(255, 215, 0, 0.03);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 62, 0.95) 100%);
    padding: 25px 20px;
    border-radius: 20px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:nth-child(1) {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(251, 191, 36, 0.25);
}

.feature-card:nth-child(2) {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(59, 130, 246, 0.25);
}

.feature-card:nth-child(3) {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(16, 185, 129, 0.25);
}

.feature-card:nth-child(4) {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(239, 68, 68, 0.25);
}

.feature-card::after {
    content: '🎮';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 4em;
    opacity: 0.1;
    animation: gameIconFloat 4s ease-in-out infinite;
}

.feature-card:nth-child(2)::after {
    content: '🌐';
}

.feature-card:nth-child(3)::after {
    content: '🔒';
}

.feature-card:nth-child(4)::after {
    content: '🎁';
}

@keyframes gameIconFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translate(-10px, -10px) rotate(15deg);
        opacity: 0.15;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-width: 3px;
    box-shadow: 
        var(--premium-shadow),
        0 0 50px rgba(251, 191, 36, 0.4);
}

.feature-card:nth-child(1):hover {
    box-shadow: var(--premium-shadow), 0 0 50px rgba(251, 191, 36, 0.5);
}

.feature-card:nth-child(2):hover {
    box-shadow: var(--premium-shadow), 0 0 50px rgba(59, 130, 246, 0.5);
}

.feature-card:nth-child(3):hover {
    box-shadow: var(--premium-shadow), 0 0 50px rgba(16, 185, 129, 0.5);
}

.feature-card:nth-child(4):hover {
    box-shadow: var(--premium-shadow), 0 0 50px rgba(239, 68, 68, 0.5);
}

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

/* Feature Icons - Mobile-friendly responsive styles (Bigger & Better on Mobile) */
/* Fix: Icons ko thoda bada karo - desktop 80-90px, mobile 100-120px */
.feature-icon,
.responsive-icon {
    width: 90px; /* Desktop: 90px (thoda bada desktop pe bhi) */
    height: auto; /* Responsive height, preserve aspect ratio */
    max-width: 100%;
    object-fit: contain; /* Preserve aspect ratio, no stretch, sharp look */
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    display: block;
}

/* Hide icon if image fails, show fallback */
.feature-icon[style*="display: none"] + .feature-icon-fallback,
.feature-card:has(.feature-icon[style*="display: none"]) .feature-icon-fallback {
    display: block !important;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Mobile (≤768px): Icons bigger - 120px for attractive, sharp look, maza aaye */
@media screen and (max-width: 768px) {
    .feature-icon,
    .responsive-icon {
        width: 120px; /* Mobile: 120px (thoda bada, attractive, maza aaye, sharp) */
        height: auto; /* Responsive height, preserve aspect ratio - no stretch */
        margin-bottom: 25px;
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8)); /* Slightly stronger glow on mobile */
    }

    .feature-icon-fallback {
        font-size: 5.5em; /* Bigger fallback on mobile */
        margin-bottom: 25px;
    }
}

/* Extra small phones (≤480px): Icons still good size - 100px */
@media screen and (max-width: 480px) {
    .feature-icon,
    .responsive-icon {
        width: 100px; /* Small mobile: 100px (still attractive, no overflow, sharp) */
        height: auto; /* Preserve aspect ratio */
        margin-bottom: 20px;
    }

    .feature-icon-fallback {
        font-size: 5em; /* Slightly smaller fallback on very small phones */
        margin-bottom: 20px;
    }
}

.feature-icon-fallback {
    font-size: 10em;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3em;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth Animations - Disabled for Performance */
.stat-card,
.tokenomics-card,
.ref-stat-card,
.summary-card {
    /* Animation disabled for better performance */
}

/* Section Entrance Animations - Disabled for Performance */
.vesting-section,
.referral-diagram-section,
.tokenomics-section,
.roadmap-section,
.faq-section,
.features-section {
    /* Animation disabled for better performance */
}

/* Token Icon Animation - Disabled for Performance */
.tokenomics-card::before {
    display: none; /* Disabled for better performance */
}

/* Level Cards Animation */
.level-card {
    position: relative;
}

.level-card::before {
    content: '💎';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2em;
    opacity: 0.2;
    animation: gemFloat 3s ease-in-out infinite;
}

.level-card.l1::before {
    content: '⭐';
}

.level-card.l2::before {
    content: '✨';
}

.level-card.l3::before {
    content: '🌟';
}

@keyframes gemFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-10px) rotate(15deg);
        opacity: 0.4;
    }
}

/* Roadmap Items Animation */
.roadmap-item {
    animation: roadmapSlideIn 0.8s ease-out;
    animation-fill-mode: both;
}

.roadmap-item:nth-child(1) {
    animation-delay: 0.1s;
}

.roadmap-item:nth-child(2) {
    animation-delay: 0.2s;
}

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

.roadmap-item:nth-child(4) {
    animation-delay: 0.4s;
}

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

/* Gaming Style Effects */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .status-content {
        grid-template-columns: 1fr;
    }
    
    .vesting-timeline {
        padding-left: 0;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .roadmap-timeline {
        padding-left: 30px;
    }
    
    /* Mobile Logo - Updated to match responsive requirements (Bigger & Better) */
    .logo-container {
        justify-content: center;
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
    }
    
    .logo-img,
    .responsive-logo {
        max-width: 120px; /* Mobile: 120px (thoda bada, attractive) */
        height: auto;
        object-fit: contain; /* Preserve aspect ratio, no crop */
        padding: 4px;
        margin: 0 auto; /* Center logo */
    }
    
    .nav-container {
        flex-direction: column;
        gap: 8px;
        padding: 5px 10px;
        height: auto;
        min-height: 55px;
    }
    
    .navbar {
        padding: 5px 0;
    }
    
    .hero-banner {
        opacity: 0.2;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.success {
    color: var(--success-color) !important;
}

.error {
    color: var(--error-color) !important;
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    position: relative;
}

.section-description {
    text-align: center;
    color: #fbbf24;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-card {
    position: relative;
}

.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.3);
}

.video-responsive video,
.video-responsive .video-placeholder,
.video-responsive .video-loading,
.video-responsive .video-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.video-card video {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    display: block;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 2px dashed rgba(251, 191, 36, 0.3);
    color: #b8b8d4;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.video-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.video-placeholder-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.video-loading {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(59, 130, 246, 0.2);
    border-left: 4px solid #3b82f6;
    border-radius: 50%;
    animation: video-spin 1s linear infinite;
    margin-bottom: 10px;
}

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

.video-error {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    text-align: center;
}

.video-error-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.video-error-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.video-info-overlay {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-info-overlay {
    opacity: 1;
}

.video-duration {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.video-size {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Mobile Responsive for Videos - Full Screen YouTube Shorts Style */
@media (max-width: 768px) {
    .videos-section {
        padding: 0;
        margin: 0;
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .videos-section .container {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        margin: 0;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 0;
        padding: 0;
        width: 100vw;
        max-width: 100vw;
    }

    .video-card {
        padding: 0;
        margin: 0;
        border-radius: 0;
        border: none;
        background: #000;
        backdrop-filter: none;
        box-shadow: none;
        width: 100vw;
        max-width: 100vw;
        position: relative;
        overflow: hidden;
    }

    .video-card:hover {
        transform: none;
        box-shadow: none;
    }

    .video-responsive {
        width: 100vw;
        max-width: 100vw;
        padding-bottom: 0;
        height: auto;
        min-height: 60vh;
        position: relative;
        margin-bottom: 0;
        border-radius: 0;
        background: #000;
        overflow: hidden;
    }

    .video-responsive video,
    .video-responsive .video-placeholder,
    .video-responsive .video-loading,
    .video-responsive .video-error {
        position: relative !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        min-height: 60vh !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        display: block !important;
        box-shadow: none !important;
    }

    .video-card video {
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        min-height: 60vh !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        display: block !important;
        box-shadow: none !important;
    }

    .video-placeholder,
    .video-loading,
    .video-error {
        width: 100vw;
        max-width: 100vw;
        height: 60vh;
        min-height: 60vh;
        border-radius: 0;
        margin-bottom: 0;
        position: relative;
    }

    .video-info-overlay {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 0.75rem;
        z-index: 10;
    }

    .videos-section .section-title,
    .videos-section .section-subtitle,
    .videos-section .section-description {
        padding: 0 20px;
        margin: 20px 0;
        text-align: center;
    }

    .videos-section .section-title {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .videos-section .section-description {
        margin-bottom: 20px;
    }

    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

@media (max-width: 480px) {
    .videos-section {
        padding: 40px 0;
    }

    .video-card video,
    .video-placeholder,
    .video-loading,
    .video-error {
        height: 160px;
    }

    .video-card {
        padding: 12px;
    }
}
