@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');
    
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* --- BACKGROUND FX --- */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulance type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 100, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(0, 255, 150, 0.15) 0%, transparent 50%);
    z-index: 0;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 0, 100, 0.2) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(circle at 80% 50%, rgba(255, 0, 100, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
    }
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffd700 0%, #ff006e 50%, #00ff95 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoGlow 2s ease-in-out infinite;
    text-transform: uppercase;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 0, 110, 0.7)); }
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.btn {
    background: linear-gradient(135deg, #ffd700 0%, #ff006e 100%);
    color: #000;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #ffd700;
    z-index: 101;
}

/* --- HERO SECTION --- */
.hero {
    text-align: center;
    padding: 80px 60px 40px;
}

.hero h1 {
    font-size: clamp(40px, 7vw, 100px);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffd700 0%, #ff006e 50%, #00ff95 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    animation: titleGlitch 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

@keyframes titleGlitch {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-5px) rotate(1deg); }
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    color: #ffd700;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.street-badge {
    display: inline-block;
    background: rgba(255, 0, 110, 0.2);
    border: 2px solid #ff006e;
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgeBounce 2s ease-in-out infinite;
}

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

/* --- CHARACTER & ANIMATIONS --- */
.character-container {
    position: relative;
    max-width: 600px;
    margin: 40px auto;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 0, 100, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.9; }
}

.character {
    position: relative;
    z-index: 2;
    animation: bobFloat 2s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s;
}

.character:hover {
    transform: scale(1.1) rotate(10deg);
}

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

.character img {
    filter: drop-shadow(0 20px 60px rgba(255, 215, 0, 0.6));
    transition: filter 0.3s;
}

.character:hover img {
    filter: drop-shadow(0 30px 80px rgba(255, 215, 0, 0.9));
}

.money-emoji {
    position: absolute;
    font-size: 60px;
    animation: moneyFloat 4s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes moneyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-100px) rotate(360deg); opacity: 1; }
}

.money-1 { top: 10%; left: 10%; animation-delay: 0s; }
.money-2 { top: 20%; right: 15%; animation-delay: 1s; }
.money-3 { bottom: 30%; left: 5%; animation-delay: 2s; }
.money-4 { bottom: 20%; right: 10%; animation-delay: 1.5s; }

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

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ff006e 100%);
    color: #000;
    padding: 20px 50px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 0, 110, 0.3); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), 0 0 100px rgba(255, 0, 110, 0.5); }
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.7);
}

.btn-secondary {
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    color: #ffd700;
    padding: 20px 50px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
    border: 3px solid #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* --- STATS GRID --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3px;
    margin: 80px 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ff006e 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid #ffd700;
}

.stat-item {
    background: #000;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

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

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

.stat-item:hover {
    background: rgba(20, 10, 0, 1);
    transform: scale(1.05);
}

.stat-value {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ff006e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    animation: statGlow 2s ease-in-out infinite;
}

@keyframes statGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 215, 0, 0.8);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- HOOD BANNER --- */
.hood-banner {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.3) 0%, rgba(255, 215, 0, 0.3) 100%);
    border: 3px solid #ffd700;
    border-left: none;
    border-right: none;
    padding: 40px 60px;
    text-align: center;
    margin: 80px 0;
}

.hood-banner h3 {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    letter-spacing: 2px;
}

.hood-banner p {
    font-size: clamp(16px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.6;
}

/* --- TICKER --- */
.ticker-container {
    margin: 60px 0;
    overflow: hidden;
    padding: 30px 0;
    background: rgba(255, 215, 0, 0.05);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.ticker {
    display: flex;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-size: 28px;
    font-weight: 900;
    margin: 0 60px;
    color: #ffd700;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* --- FEATURES --- */
.features-section {
    padding: 80px 60px;
}

.section-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffd700 0%, #ff006e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 215, 0, 0.03);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.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.4s;
}

.feature-card:hover::before {
    opacity: 1;
    animation: cardRotate 3s linear infinite;
}

@keyframes cardRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-card:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: #ffd700;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

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

.feature-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 500;
}

/* --- STORY SECTION --- */
.story-section {
    margin: 40px 60px;
    background: rgba(255, 0, 110, 0.1);
    border: 3px solid #ff006e;
    border-radius: 30px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.story-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.story-title {
    font-size: 40px;
    font-weight: 900;
    color: #ff006e;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.6);
}

.story-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.emoji-divider {
    font-size: 40px;
    margin: 20px 0;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce { from{transform: translateY(0);} to{transform: translateY(-10px);}}

/* --- TOKENOMICS --- */
.tokenomics {
    margin: 80px 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 0, 110, 0.15) 100%);
    border: 3px solid #ffd700;
    border-radius: 32px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.tokenomics::before {
    content: '💰';
    position: absolute;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    animation: moneyRotate 20s linear infinite;
}

@keyframes moneyRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.token-item {
    text-align: center;
    padding: 35px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.token-item:hover {
    transform: scale(1.08) rotate(-2deg);
    border-color: #ffd700;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.token-label {
    font-size: 13px;
    color: rgba(255, 215, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.token-value {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- COPY TOAST & CA --- */
.ca-container {
    background: rgba(0,0,0,0.6);
    border: 2px dashed #ffd700;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer;
    font-family: monospace;
    font-size: 18px;
    transition: 0.2s;
}
.ca-container:active { transform: scale(0.98); background: rgba(255, 215, 0, 0.2); }

#copy-toast {
    visibility: hidden;
    min-width: 250px; 
    background-color: #333; 
    color: #fff; 
    text-align: center; 
    border-radius: 2px; 
    padding: 16px; 
    position: fixed; 
    z-index: 1000; 
    left: 50%; 
    bottom: 30px; 
    transform: translateX(-50%);
}
#copy-toast.show { visibility: visible; animation: fadein 0.5s, fadeout 0.5s 2.5s; }

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 60px 60px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 80px;
    background: rgba(0, 0, 0, 0.5);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ff006e 100%);
    border-color: #ffd700;
    transform: translateY(-8px) rotate(360deg) scale(1.2);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.footer-text {
    color: rgba(255, 215, 0, 0.6);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- STICKY MOBILE BUTTON (DEFAULT HIDDEN) --- */
.mobile-sticky-btn {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: linear-gradient(135deg, #0088cc 0%, #00aaff 100%);
    color: white;
    padding: 16px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.5);
    z-index: 1000;
    font-size: 18px;
    border: 2px solid white;
    animation: stickyPulse 2s infinite;
}

@keyframes stickyPulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.02); }
    100% { transform: translateX(-50%) scale(1); }
}

/* =========================================
   MOBILE OPTIMIZATION (All Screen Sizes)
   ========================================= */
@media (max-width: 768px) {
    /* --- LAYOUT ESSENTIALS --- */
    .hamburger { display: block; }
    
    /* Global Padding Reduction for Small Screens */
    nav, .hero, .features-section, .tokenomics, footer, .hood-banner, .story-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* --- MOBILE NAVIGATION OVERLAY --- */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.98);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        z-index: 100;
    }
    
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 24px; }

    /* --- TYPOGRAPHY & HERO --- */
    /* Prevent title overlap on narrow screens */
    .hero h1 {
        font-size: clamp(32px, 10vw, 50px);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }

    /* --- TOUCH TARGETS (FAT FINGER FRIENDLY) --- */
    /* Stack buttons vertically and make them full width */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 0;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        display: block;
        padding: 15px 0; /* Larger touch area */
        font-size: 18px;
    }

    /* --- GRID FIXES --- */
    /* Force 1 column on mobile to prevent squishing */
    .stats-grid {
        grid-template-columns: 1fr; 
        margin: 40px 0;
        width: 100%;
    }
    
    .features-grid, .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    /* --- CA CONTAINER FIX --- */
    /* Prevent address from overflowing screen */
    .ca-container {
        width: 100%;
        font-size: 13px; /* Smaller font to fit */
        padding: 12px;
        justify-content: center;
        word-break: break-all; /* Critical for 0x addresses */
    }

    /* --- VISUAL TWEAKS --- */
    /* Scale down character area */
    .character-container {
        height: 300px;
        margin: 20px auto;
    }
    
    .money-emoji {
        font-size: 30px;
    }
    
    /* Reduce noise effect opacity for mobile battery/performance */
    .noise {
        opacity: 0.03;
    }

    /* --- STICKY BUTTON VISIBILITY --- */
    /* Show the sticky button on mobile only */
    .mobile-sticky-btn {
        display: block;
    }

    /* Add padding to footer so sticky button doesn't cover text */
    footer {
        padding-bottom: 100px;
    }
}