@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

:root {
    --primary-green: #39FF14;
    --lime-green: #32CD32;
    --dark-green: #006400;
    --deep-green: #002200;
    --gold: #FFD700;
    --dark-gold: #B8860B;
    --text-green: #90EE90;
    --black: #000000;
    --dark-bg: #050a05;
    --darker-bg: #020502;
    --card-bg: rgba(10, 25, 10, 0.85);
    --glass-bg: rgba(57, 255, 20, 0.05);
    --glass-border: rgba(57, 255, 20, 0.3);
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --cyan: #00FFFF;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    --glow-green: 0 0 30px rgba(57, 255, 20, 0.5);
    --glow-green-strong: 0 0 60px rgba(57, 255, 20, 0.8), 0 0 120px rgba(50, 205, 50, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; cursor: none; }
body {
    font-family: var(--font-body);
    background: var(--darker-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

/* ═══ CUSTOM CURSOR — FIXED: Always clover ═══ */

.custom-cursor {
    width: 20px; height: 20px;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 10001;
    mix-blend-mode: difference;
    transition: transform 0.15s ease, opacity 0.2s ease;
    will-change: transform, left, top;
}

.custom-cursor::before {
    content: '🍀';
    font-size: 20px;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* FIX: Keep clover on hover, just scale up */
.custom-cursor.hover {
    transform: scale(1.4);
}

.custom-cursor.hover::before {
    content: '🍀';
    font-size: 24px;
}

.custom-cursor.clicking { transform: scale(0.8); }
.cursor-trail { display: none; }

/* ═══ LOADING SCREEN ═══ */

.loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--black); z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-heart {
    font-size: 80px;
    animation: heartPulse 1s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.8));
}
@keyframes heartPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.loader-text {
    font-family: var(--font-mono); font-size: 1.2rem;
    color: var(--text-gray); margin-top: 2rem; letter-spacing: 2px;
}
.loader-bar {
    width: 300px; height: 4px;
    background: rgba(57, 255, 20, 0.2);
    margin: 2rem auto; position: relative; overflow: hidden;
}
.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--lime-green));
    width: 0%; transition: width 0.1s ease;
    box-shadow: 0 0 20px var(--primary-green);
}
.loader-status {
    font-family: var(--font-mono); font-size: 0.9rem;
    color: var(--primary-green); letter-spacing: 1px;
}

/* ═══ BACKGROUND EFFECTS ═══ */

.bg-grid {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none; z-index: -3;
}
.bg-noise {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.02; pointer-events: none; z-index: -2;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.bg-vignette {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.7) 100%);
    pointer-events: none; z-index: -1;
}
.scanlines {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1));
    background-size: 100% 4px;
    pointer-events: none; z-index: -1;
}
body::before {
    content: '';
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(57, 255, 20, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(50, 205, 50, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #020502 0%, #050f05 50%, #020502 100%);
    animation: bgShift 20s ease-in-out infinite;
    pointer-events: none; z-index: -4;
}
@keyframes bgShift {
    0%, 100% { filter: hue-rotate(0deg); opacity: 1; }
    50% { filter: hue-rotate(15deg); opacity: 0.8; }
}

/* ═══ GLASSMORPHISM ═══ */

.glass-card {
    background: linear-gradient(135deg, rgba(10, 25, 10, 0.9) 0%, rgba(5, 15, 5, 0.95) 100%);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    position: relative; overflow: hidden; transition: all 0.3s ease;
}
.glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.6), transparent);
}
.glass-card::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.05), transparent);
    transition: left 0.5s ease;
}
.glass-card:hover { box-shadow: 0 0 30px rgba(57, 255, 20, 0.2); border-color: rgba(57, 255, 20, 0.5); }
.glass-card:hover::after { left: 100%; }

/* ═══ ANIMATIONS ═══ */

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.3); } 50% { box-shadow: 0 0 50px rgba(57, 255, 20, 0.8), 0 0 100px rgba(50, 205, 50, 0.4); } }
@keyframes textGlow { 0%, 100% { text-shadow: 0 0 20px rgba(57, 255, 20, 0.4), 0 0 40px rgba(255, 215, 0, 0.2); } 50% { text-shadow: 0 0 40px rgba(57, 255, 20, 0.8), 0 0 80px rgba(255, 215, 0, 0.4); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes shake { 0%, 100% { transform: translateX(0); } 10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); } 20%, 40%, 60%, 80% { transform: translateX(5px); } }
@keyframes glitch {
    0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 2px); }
    20% { clip-path: inset(92% 0 1% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(43% 0 1% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(25% 0 58% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(54% 0 7% 0); transform: translate(-2px, 2px); }
    100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, -2px); }
}

/* ═══ TYPOGRAPHY ═══ */

h1, h2, h3 { font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem); line-height: 0.95;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--lime-green) 50%, var(--gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.5));
    animation: textGlow 3s ease-in-out infinite;
}
h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: 4px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--lime-green) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 20px rgba(50, 205, 50, 0.4)); margin-bottom: 1rem;
}
h3 { font-family: var(--font-body); font-size: 1.5rem; color: var(--primary-green); letter-spacing: 2px; margin-bottom: 1rem; }
p { font-size: 1.05rem; color: var(--text-gray); line-height: 1.8; }
.accent { color: var(--primary-green); font-weight: 700; }

/* ═══ HEADER ═══ */

header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(2, 5, 2, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--primary-green);
    padding: 0.8rem 2rem; height: 68px;
    display: flex; align-items: center; transition: all 0.3s ease;
}
header.scrolled { background: rgba(2, 5, 2, 0.98); box-shadow: 0 0 40px rgba(57, 255, 20, 0.3); }
nav {
    width: 100%; max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center; gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; cursor: none; }
.logo-icon { width: 40px; height: 40px; }
.heart-svg { width: 100%; height: 100%; filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.6)); }
.heart-left { animation: heartBeat 1.5s ease-in-out infinite; }
.heart-crack { stroke-dasharray: 50; stroke-dashoffset: 50; animation: crackReveal 2s ease-out forwards; }
@keyframes heartBeat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.1); } 30% { transform: scale(1); } }
@keyframes crackReveal { to { stroke-dashoffset: 0; } }
.logo-text {
    font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-green), var(--lime-green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
    color: var(--text-white); text-decoration: none; font-weight: 700;
    font-size: 0.9rem; letter-spacing: 1px; position: relative;
    transition: all 0.3s ease; cursor: none;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--lime-green));
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--primary-green); text-shadow: 0 0 20px rgba(57, 255, 20, 0.6); }
.nav-links a:hover::after { width: 100%; }
.btn-buy {
    background: linear-gradient(135deg, var(--primary-green), var(--lime-green));
    color: var(--black); padding: 0.8rem 1.5rem;
    font-weight: 900; font-size: 0.85rem; letter-spacing: 1px;
    text-decoration: none; border: 2px solid var(--primary-green);
    transition: all 0.3s ease; animation: glow 2s ease-in-out infinite; cursor: none;
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(57, 255, 20, 0.8); }
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: none; padding: 5px;
}
.mobile-menu-btn span { width: 25px; height: 2px; background: var(--primary-green); transition: all 0.3s ease; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(2, 5, 2, 0.98); backdrop-filter: blur(20px);
    padding: 2rem; flex-direction: column; gap: 1.5rem; z-index: 999;
    transform: translateY(-100%); opacity: 0; transition: all 0.3s ease;
}
.mobile-menu.active { transform: translateY(0); opacity: 1; }
.mobile-menu a {
    color: var(--text-white); text-decoration: none; font-weight: 700;
    font-size: 1.1rem; padding: 0.5rem 0;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}
.mobile-buy-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--lime-green));
    color: var(--black) !important; text-align: center;
    padding: 1rem !important; border: none !important; margin-top: 1rem;
}

/* ═══ REJECTION TICKER ═══ */

.rejection-ticker {
    position: fixed; top: 68px; left: 0; right: 0;
    background: linear-gradient(90deg, var(--deep-green), var(--dark-green));
    overflow: hidden; z-index: 998;
    border-bottom: 1px solid rgba(57, 255, 20, 0.3); height: 32px;
}
.ticker-content {
    display: flex; gap: 4rem;
    animation: ticker 60s linear infinite;
    white-space: nowrap; height: 100%; align-items: center; padding: 0 1rem;
}
.ticker-content span {
    font-family: var(--font-mono); font-size: 0.75rem;
    color: var(--text-green); letter-spacing: 1px;
    flex-shrink: 0; display: inline-flex; align-items: center;
}

/* ═══ HERO ═══ */

.hero {
    min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 4rem; padding: 140px 4rem 4rem;
    max-width: 1400px; margin: 0 auto; position: relative;
}
.hero-bg-image {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: url('lucky-background.png') center center / cover no-repeat;
    opacity: 0.35; z-index: -1;
}
.hero-content { animation: slideInLeft 1s ease-out; }
.hero-badge {
    display: inline-block; background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--primary-green); padding: 0.5rem 1.2rem;
    font-family: var(--font-mono); font-size: 0.75rem;
    letter-spacing: 2px; color: var(--primary-green); margin-bottom: 1.5rem;
}
.glitch-text { position: relative; }
.glitch-text::before, .glitch-text::after {
    content: attr(data-text); position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; background: var(--darker-bg);
}
.glitch-text::before { left: 2px; text-shadow: -2px 0 var(--cyan); animation: glitch 2s infinite linear alternate-reverse; opacity: 0.8; }
.glitch-text::after { left: -2px; text-shadow: 2px 0 var(--primary-green); animation: glitch 3s infinite linear alternate-reverse; opacity: 0.8; }
.tagline {
    font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-white); letter-spacing: 4px; margin: 1rem 0;
}
.description { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 1.5rem; max-width: 550px; line-height: 1.8; }
.hero-quotes {
    display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center;
    margin-bottom: 2rem; font-family: var(--font-mono);
    font-size: 0.8rem; color: var(--text-green); letter-spacing: 1px;
}
.hero-quotes .separator { color: var(--primary-green); }

.contract-box {
    background: rgba(10, 25, 10, 0.9); border: 2px solid var(--primary-green);
    padding: 1.2rem 1.5rem; margin-bottom: 2rem;
    position: relative; max-width: 100%; overflow: hidden;
}
.contract-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--primary-green); letter-spacing: 2px; margin-bottom: 0.5rem; }
.contract-address { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-white); word-break: break-all; padding-right: 80px; }
.copy-btn {
    position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
    background: var(--primary-green); border: none; padding: 0.5rem 1rem;
    color: var(--black); font-weight: 700; font-size: 0.75rem;
    cursor: none; transition: all 0.3s ease;
    display: flex; align-items: center; gap: 0.3rem;
}
.copy-btn:hover { background: var(--lime-green); box-shadow: 0 0 20px rgba(57, 255, 20, 0.6); }
.copy-feedback {
    position: absolute; bottom: -40px; left: 0; right: 0;
    background: var(--dark-green); color: var(--text-white);
    padding: 0.5rem; font-size: 0.8rem; text-align: center;
    opacity: 0; transform: translateY(-10px); transition: all 0.3s ease;
}
.copy-feedback.show { opacity: 1; transform: translateY(0); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2rem; font-weight: 800; font-size: 0.9rem;
    letter-spacing: 1px; text-decoration: none; text-transform: uppercase;
    transition: all 0.3s ease; cursor: none; border: 2px solid transparent;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--lime-green));
    color: var(--black); border-color: var(--primary-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(57, 255, 20, 0.8); }
.btn-secondary { background: transparent; color: var(--primary-green); border-color: var(--primary-green); }
.btn-secondary:hover { background: rgba(57, 255, 20, 0.1); box-shadow: 0 0 30px rgba(57, 255, 20, 0.3); }
.btn-large { padding: 1.2rem 3rem; font-size: 1rem; }
.btn-icon { font-size: 1.2rem; }

.hero-image {
    position: relative; display: flex; justify-content: center;
    align-items: center; animation: slideInRight 1s ease-out;
}
.mascot-img {
    max-width: 100%; height: auto; max-height: 550px; cursor: none;
    border-radius: 15px; transition: transform 0.3s ease, filter 0.3s ease;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 0 60px rgba(57, 255, 20, 0.6)) contrast(1.15) saturate(1.4) brightness(1.1);
    animation: float 4s ease-in-out infinite;
}
.mascot-img:hover { transform: scale(1.05); filter: drop-shadow(0 0 80px rgba(57, 255, 20, 0.8)) contrast(1.2) saturate(1.5) brightness(1.15); }
.mascot-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.2) 0%, transparent 50%);
    pointer-events: none; z-index: -1;
}
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; animation: fadeInUp 1s ease-out 1s both; }
.scroll-indicator span { display: block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 3px; color: var(--text-gray); margin-bottom: 0.5rem; }
.scroll-arrow { font-size: 1.5rem; color: var(--primary-green); animation: float 2s ease-in-out infinite; }

/* ═══ LIVE PRICE BANNER ═══ */

.live-price-banner {
    background: rgba(5, 15, 5, 0.9); padding: 2rem;
    border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.live-price-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    gap: 3rem; flex-wrap: wrap;
}
.live-price-main { display: flex; flex-direction: column; gap: 0.3rem; }
.live-indicator { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-gray); letter-spacing: 2px; }
.live-dot { width: 8px; height: 8px; background: #00ff00; border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; box-shadow: 0 0 10px #00ff00; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.live-price { font-family: var(--font-display); font-size: 3rem; color: var(--text-white); font-weight: 700; letter-spacing: 1px; }
.live-pair { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-gray); letter-spacing: 1px; }
.live-updated { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-gray); opacity: 0.7; }
.live-stats-grid { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.live-stat { display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem; }
.stat-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-gray); letter-spacing: 1px; }
.stat-value { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-white); font-weight: 700; }
.stat-value.positive { color: #00ff00; }
.stat-value.negative { color: #ff4444; }
.live-divider { width: 1px; height: 40px; background: var(--glass-border); }

/* ═══ CONTENT SECTIONS ═══ */

.content-section { padding: 6rem 4rem; max-width: 1400px; margin: 0 auto; position: relative; }
.content-section::before { content: '🍀'; position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%); font-size: 2rem; opacity: 0.5; }
.content-section:first-of-type::before { display: none; }
.section-label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 3px; color: var(--primary-green); margin-bottom: 0.5rem; opacity: 0.8; }
.section-desc { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 3rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.about-image { position: relative; }
.about-banner {
    width: 100%; height: auto; display: block;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 0 40px rgba(57, 255, 20, 0.5)) contrast(1.1) saturate(1.2);
    transition: filter 0.3s ease, transform 0.3s ease; border-radius: 15px;
}
.about-image:hover .about-banner { filter: drop-shadow(0 0 60px rgba(57, 255, 20, 0.7)) contrast(1.15) saturate(1.3); transform: scale(1.02); }

.section-mascot {
    display: block; max-width: 350px; height: auto; margin: 0 auto 2rem;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 0 50px rgba(57, 255, 20, 0.5)) contrast(1.1) saturate(1.2);
    transition: filter 0.3s ease, transform 0.3s ease; border-radius: 15px;
}
.section-mascot:hover { filter: drop-shadow(0 0 70px rgba(57, 255, 20, 0.7)) contrast(1.15) saturate(1.3); transform: scale(1.03); }
.community-mascot { max-width: 500px; }

.tokenomics-header { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; margin-bottom: 3rem; }
.tokenomics-image { flex-shrink: 0; }
.tokenomics-image .section-mascot { max-width: 280px; margin: 0; }

.token-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.token-info-box { padding: 2rem; text-align: left; transition: all 0.3s ease; }
.token-info-box:hover { transform: translateY(-5px); box-shadow: 0 0 30px rgba(57, 255, 20, 0.3); }
.info-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-gray); letter-spacing: 2px; margin-bottom: 1rem; }
.info-value { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-white); margin-bottom: 0.5rem; word-break: break-all; }
.info-address { font-size: 1.3rem; font-family: var(--font-mono); }
.info-subtitle { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-gray); }

.tokenomics-features {
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
    padding: 2rem; background: rgba(57, 255, 20, 0.05);
    border: 1px solid var(--glass-border); border-radius: 10px;
}
.token-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; color: var(--text-white); }
.token-feature .feature-icon { font-size: 1.5rem; }

.roadmap-header { text-align: center; margin-bottom: 2rem; }
.roadmap-header .section-mascot { max-width: 300px; }
.community-header { text-align: center; margin-bottom: 2rem; }

.cta-mascot {
    display: block; max-width: 200px; height: auto; margin: 0 auto 1.5rem;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 0 40px rgba(57, 255, 20, 0.6)) contrast(1.1) saturate(1.2);
    animation: float 3s ease-in-out infinite; border-radius: 10px;
}

.about-text { display: flex; flex-direction: column; gap: 2rem; }
.about-box { padding: 2.5rem; position: relative; }
.about-box h3 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.about-box p { font-size: 1.1rem; line-height: 1.9; }
.card-accent { position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--primary-green), var(--lime-green)); }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.feature-card { padding: 2rem 1.5rem; text-align: center; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 0 30px rgba(57, 255, 20, 0.4); }
.feature-icon { font-size: 2.5rem; }
.feature-text { font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; color: var(--text-white); }

.pitch-section { text-align: center; }
.pitch-box { max-width: 900px; margin: 3rem auto 0; padding: 4rem; text-align: center; }
.pitch-box p { font-size: 1.4rem; line-height: 2.2; margin-bottom: 3rem; }
.pitch-formulas { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.formula { display: flex; align-items: center; gap: 1rem; background: rgba(57, 255, 20, 0.1); padding: 1.2rem 2rem; border: 1px solid var(--glass-border); transition: all 0.3s ease; }
.formula:hover { background: rgba(57, 255, 20, 0.2); transform: scale(1.05); box-shadow: 0 0 30px rgba(57, 255, 20, 0.3); }
.formula-left { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-white); }
.formula-equals { color: var(--primary-green); font-weight: 700; font-size: 1.5rem; }
.formula-right { font-family: var(--font-display); font-size: 1.8rem; color: var(--primary-green); }

.chart-section { text-align: center; }
.chart-mascot-container { margin-bottom: 2rem; }
.chart-mascot { max-width: 600px; width: 100%; height: auto; border-radius: 15px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); }
.chart-wrapper { width: 100%; height: 600px; margin: 3rem 0; padding: 0; position: relative; overflow: hidden; }
.chart-embed { width: 100%; height: 100%; opacity: 0; transition: opacity 0.5s ease; }
.chart-embed.loaded { opacity: 1; }
.chart-loading { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: var(--text-gray); }
.chart-loading-icon { font-size: 3rem; margin-bottom: 1rem; animation: float 2s ease-in-out infinite; }

/* ═══ ROADMAP ═══ */

.roadmap-timeline {
    position: relative; display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem; margin-top: 3rem; width: 100%;
}
.timeline-line { position: absolute; top: 80px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--deep-green), var(--primary-green), var(--deep-green)); z-index: 0; }
.roadmap-card { padding: 2.5rem; position: relative; z-index: 1; transition: all 0.3s ease; min-height: 380px; }
.roadmap-card:hover { transform: translateY(-10px); box-shadow: 0 0 50px rgba(57, 255, 20, 0.5); }
.roadmap-card.active { border-color: var(--dark-gold); }
.roadmap-card.completed { border-color: #00ff00; opacity: 0.85; }
.roadmap-status {
    display: inline-block; background: var(--darker-bg);
    padding: 0.4rem 1rem; font-family: var(--font-mono);
    font-size: 0.65rem; letter-spacing: 2px;
    color: var(--primary-green); border: 1px solid var(--primary-green); margin-bottom: 1.5rem;
}
.roadmap-card.active .roadmap-status { background: var(--dark-gold); border-color: var(--dark-gold); color: var(--text-white); }
.roadmap-card.completed .roadmap-status { background: #00ff00; border-color: #00ff00; color: #000; }
.roadmap-phase { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-gray); letter-spacing: 2px; margin-bottom: 0.5rem; }
.roadmap-card h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.5rem; }
.phase-subtitle { font-size: 0.9rem; color: var(--text-green); margin-bottom: 2rem; font-style: italic; }
.roadmap-card ul { list-style: none; }
.roadmap-card li { padding: 0.6rem 0; padding-left: 1.8rem; position: relative; font-size: 0.95rem; color: var(--text-gray); }
.roadmap-card li::before { content: '🍀'; position: absolute; left: 0; font-size: 0.8rem; }

/* ═══ FAQ ═══ */

.faq-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item { overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: var(--primary-green); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.8rem 2.5rem; cursor: none; font-weight: 700;
    font-size: 1.1rem; color: var(--text-white); transition: all 0.3s ease;
}
.faq-question:hover { color: var(--primary-green); }
.faq-toggle { font-size: 1.8rem; color: var(--primary-green); transition: transform 0.3s ease; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 250px; padding: 0 2.5rem 2rem; }
.faq-answer p { font-size: 1.05rem; line-height: 1.9; }

/* ═══ JOIN GRID — Now 2 columns (Twitter removed) ═══ */

.join-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.join-card {
    padding: 3rem 2rem; text-align: center; transition: all 0.3s ease;
    text-decoration: none; display: flex; flex-direction: column;
    align-items: center; min-height: 280px;
}
.join-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 0 50px rgba(57, 255, 20, 0.5); }
.join-icon { width: 60px; height: 60px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
.social-icon { width: 50px; height: 50px; color: var(--primary-green); filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.5)); transition: all 0.3s ease; }
.join-card:hover .social-icon { color: var(--lime-green); filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.8)); transform: scale(1.1); }
.join-card h4 { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary-green); margin-bottom: 1rem; letter-spacing: 2px; }
.join-card p { font-size: 1rem; margin-bottom: 1.5rem; flex-grow: 1; }
.join-arrow { font-size: 1.5rem; color: var(--primary-green); transition: transform 0.3s ease; }
.join-card:hover .join-arrow { transform: translateX(5px); }

.cta-box {
    max-width: 800px; margin: 5rem auto 0; padding: 4rem 5rem;
    text-align: center; position: relative; animation: glow 3s ease-in-out infinite;
}
.cta-box h3 { font-family: var(--font-display); font-size: 2.5rem; color: var(--text-white); margin-bottom: 1rem; letter-spacing: 3px; }
.cta-quote { font-style: italic; color: var(--text-green); margin-bottom: 2.5rem; font-size: 1.2rem; }

/* ═══ FOOTER ═══ */

footer {
    margin-top: 4rem; padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 50, 0, 0.5));
    border-top: 2px solid var(--primary-green); text-align: center;
}
.footer-banner { margin-bottom: 3rem; overflow: hidden; }
.footer-banner-img {
    width: 100%; max-width: 900px; height: auto; display: block; margin: 0 auto;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 0 50px rgba(57, 255, 20, 0.5)) contrast(1.1) saturate(1.2);
    border-radius: 10px;
}
footer h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.footer-tagline { font-family: var(--font-mono); font-size: 1rem; letter-spacing: 3px; color: var(--text-gray); margin-bottom: 3rem; }
.footer-links { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.footer-social {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--text-gray); text-decoration: none; font-weight: 700;
    font-size: 0.75rem; letter-spacing: 1px; transition: all 0.3s ease;
}
.footer-icon { width: 32px; height: 32px; color: var(--primary-green); transition: all 0.3s ease; }
.footer-social:hover { color: var(--primary-green); }
.footer-social:hover .footer-icon { filter: drop-shadow(0 0 15px rgba(57, 255, 20, 0.8)); transform: scale(1.15); }
.disclaimer {
    font-size: 0.9rem; color: var(--text-gray); max-width: 700px;
    margin: 0 auto; padding-top: 2rem;
    border-top: 1px solid rgba(57, 255, 20, 0.2); line-height: 2;
}
.footer-easter-egg { margin-top: 2rem; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-gray); opacity: 0.5; transition: opacity 0.3s ease; }
.footer-easter-egg:hover { opacity: 1; }

/* ═══ MOBILE STICKY CTA ═══ */

.mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    padding: 1rem; background: rgba(5, 15, 5, 0.95);
    backdrop-filter: blur(20px); border-top: 2px solid var(--primary-green); z-index: 997;
}
.mobile-cta-btn {
    display: block; width: 100%; padding: 1rem;
    background: linear-gradient(135deg, var(--primary-green), var(--lime-green));
    color: var(--black); text-align: center; font-weight: 900;
    font-size: 1rem; letter-spacing: 2px; text-decoration: none;
    animation: glow 2s ease-in-out infinite;
}

/* ═══ SCROLL TO TOP ═══ */

.scroll-top {
    position: fixed; bottom: 100px; right: 30px; width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--lime-green));
    border: 2px solid var(--primary-green); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: none; opacity: 0; visibility: hidden;
    transition: all 0.3s ease; z-index: 996;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: scale(1.1); box-shadow: 0 0 40px rgba(57, 255, 20, 0.8); }
.scroll-top-icon { font-size: 1.5rem; }

/* ═══ EASTER EGGS ═══ */

.ex-counter {
    position: fixed; top: 120px; right: 20px;
    background: rgba(0, 100, 0, 0.9); padding: 0.8rem 1.2rem;
    font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-green);
    border: 1px solid var(--dark-green); opacity: 0; transform: translateX(100%);
    transition: all 0.3s ease; z-index: 995;
}
.ex-counter.visible { opacity: 1; transform: translateX(0); }
.error-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex; align-items: center; justify-content: center;
    z-index: 100001; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.error-overlay.active { opacity: 1; visibility: visible; }
.error-content { text-align: center; animation: shake 0.5s ease-in-out; }
.error-glitch {
    font-family: var(--font-display); font-size: 8rem; color: var(--dark-green);
    text-shadow: -3px 0 var(--cyan), 3px 0 var(--lime-green);
    animation: glitch 0.3s infinite;
}
.error-message { font-family: var(--font-mono); font-size: 1.5rem; color: var(--primary-green); letter-spacing: 3px; margin-top: 1rem; }
.error-sub { font-family: var(--font-mono); font-size: 0.9rem; color: var(--text-gray); margin-top: 0.5rem; }
body.shake { animation: shake 0.5s ease-in-out; }

/* ═══ RESPONSIVE ═══ */

@media (max-width: 1200px) {
    .roadmap-timeline { grid-template-columns: repeat(2, 1fr); }
    .timeline-line { display: none; }
    .token-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding: 120px 2rem 4rem; gap: 3rem; }
    .hero-content { order: 2; } .hero-image { order: 1; }
    .mascot-img { max-height: 350px; }
    .description { margin-left: auto; margin-right: auto; }
    .hero-quotes, .btn-group { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .join-grid { grid-template-columns: repeat(2, 1fr); }
    .tokenomics-header { flex-direction: column; gap: 2rem; }
    .section-mascot { max-width: 280px; }
    .community-mascot { max-width: 400px; }
    .footer-banner-img { max-width: 100%; }
    .live-price-container { flex-direction: column; text-align: center; }
    .live-price-main, .live-stat { align-items: center; }
    .live-stats-grid { justify-content: center; }
}

@media (max-width: 768px) {
    html, body, * { cursor: auto !important; }
    .custom-cursor, .cursor-trail { display: none !important; }
    .nav-links, .btn-buy { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu { display: flex; }
    .mobile-cta { display: block; }
    .scroll-top { bottom: 80px; right: 15px; }
    .content-section { padding: 4rem 1.5rem; }
    .hero { padding: 110px 1.5rem 3rem; }
    .section-mascot { max-width: 220px; }
    .community-mascot { max-width: 320px; }
    .cta-mascot { max-width: 150px; }
    .footer-banner-img { border-radius: 5px; }
    .token-info-grid { grid-template-columns: 1fr; }
    .tokenomics-features { flex-direction: column; gap: 1.5rem; text-align: center; }
    .live-price { font-size: 2rem; }
    .live-stats-grid { gap: 1rem; }
    .live-divider { display: none; }
    .join-grid { grid-template-columns: 1fr; }
    .roadmap-timeline { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .pitch-formulas { flex-direction: column; align-items: center; }
    .cta-box { padding: 2.5rem 1.5rem; }
    .ex-counter { display: none; }
    .rejection-ticker { top: 60px; height: 28px; }
    .ticker-content span { font-size: 0.7rem; }
    header { height: 60px; padding: 0.5rem 1rem; }
    .contract-address { font-size: 0.7rem; padding-right: 0; }
    .copy-btn { position: relative; right: auto; top: auto; transform: none; width: 100%; margin-top: 1rem; justify-content: center; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .tagline { font-size: 1rem; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.8rem; }
    .error-glitch { font-size: 4rem; }
    .error-message { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .scanlines, .bg-noise { display: none; }
}