/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --crystal-primary: #7b68ee;
    --crystal-secondary: #00d4ff;
    --crystal-accent: #e040fb;
    --crystal-glow: #a78bfa;
    --crystal-deep: #4f46e5;
    --crystal-emerald: #10b981;
    --bg-primary: #030014;
    --bg-secondary: #0a0a1f;
    --bg-card: rgba(12, 12, 35, 0.65);
    --bg-card-hover: rgba(25, 25, 60, 0.75);
    --text-primary: #f0f0ff;
    --text-secondary: #9994cc;
    --text-muted: #5e5a8a;
    --glass-bg: rgba(123, 104, 238, 0.06);
    --glass-border: rgba(123, 104, 238, 0.15);
    --glass-hover: rgba(123, 104, 238, 0.12);
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 32px;
    background: rgba(3, 0, 20, 0.7);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(123, 104, 238, 0.08);
    transition: all 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 0 8px rgba(123,104,238,0.5)); }
.nav-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; background: linear-gradient(135deg, var(--crystal-glow), var(--crystal-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 28px; }
.nav-link { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: all 0.3s; position: relative; }
.nav-link:hover { color: var(--text-primary); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--crystal-primary); border-radius: 2px; transition: width 0.3s; }
.nav-link:hover::after { width: 100%; }
.nav-wallet { display: flex; align-items: center; gap: 12px; }
.network-badge { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--crystal-emerald); background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); padding: 6px 12px; border-radius: 20px; font-weight: 500; }
.badge-dot { width: 6px; height: 6px; background: var(--crystal-emerald); border-radius: 50%; animation: dot-pulse 2s ease-in-out infinite; }
@keyframes dot-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.nav-connect-btn { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; padding: 8px 20px; border-radius: 12px; border: none; cursor: pointer; background: linear-gradient(135deg, var(--crystal-deep), var(--crystal-primary)); color: white; transition: all 0.3s; }
.nav-connect-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(123,104,238,0.4); }

/* ===== AURORA BACKGROUND ===== */
.bg-aurora { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; overflow: hidden; pointer-events: none; }
.aurora-layer { position: absolute; width: 150%; height: 150%; border-radius: 50%; filter: blur(140px); opacity: 0.1; }
.aurora-1 { background: radial-gradient(ellipse, #7b68ee, transparent 60%); top: -60%; left: -30%; animation: aurora-drift-1 18s ease-in-out infinite alternate; }
.aurora-2 { background: radial-gradient(ellipse, #00d4ff, transparent 60%); top: -40%; right: -50%; animation: aurora-drift-2 22s ease-in-out infinite alternate; }
.aurora-3 { background: radial-gradient(ellipse, #e040fb, transparent 60%); bottom: -60%; left: -20%; animation: aurora-drift-3 20s ease-in-out infinite alternate; }
.aurora-4 { background: radial-gradient(ellipse, #4f46e5, transparent 60%); top: 20%; right: -40%; animation: aurora-drift-1 25s ease-in-out infinite alternate-reverse; }
@keyframes aurora-drift-1 { 0%{transform:translate(0,0) scale(1)} 50%{transform:translate(15%,10%) scale(1.1)} 100%{transform:translate(-10%,20%) scale(0.9)} }
@keyframes aurora-drift-2 { 0%{transform:translate(0,0) scale(1)} 50%{transform:translate(-20%,15%) scale(1.15)} 100%{transform:translate(10%,-10%) scale(0.95)} }
@keyframes aurora-drift-3 { 0%{transform:translate(0,0) scale(1)} 50%{transform:translate(10%,-15%) scale(1.05)} 100%{transform:translate(-15%,5%) scale(1.1)} }

/* ===== PARTICLES ===== */
#particles-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

/* ===== CRYSTAL SHARDS ===== */
.crystal-shards { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: hidden; }
.shard { position: absolute; background: linear-gradient(135deg, rgba(123,104,238,0.5), rgba(0,212,255,0.4)); clip-path: polygon(50% 0%, 100% 40%, 80% 100%, 20% 100%, 0% 40%); animation: float-shard linear infinite; opacity: 0; }
.shard-1{left:5%;width:6px;height:10px;animation-duration:14s;animation-delay:0s}
.shard-2{left:15%;width:10px;height:16px;animation-duration:18s;animation-delay:2s}
.shard-3{left:25%;width:5px;height:8px;animation-duration:12s;animation-delay:4s}
.shard-4{left:35%;width:8px;height:14px;animation-duration:16s;animation-delay:1s}
.shard-5{left:45%;width:12px;height:18px;animation-duration:20s;animation-delay:3s}
.shard-6{left:55%;width:7px;height:12px;animation-duration:15s;animation-delay:5s}
.shard-7{left:65%;width:9px;height:15px;animation-duration:17s;animation-delay:7s}
.shard-8{left:75%;width:6px;height:10px;animation-duration:13s;animation-delay:6s}
.shard-9{left:85%;width:8px;height:13px;animation-duration:19s;animation-delay:8s}
.shard-10{left:92%;width:5px;height:9px;animation-duration:14s;animation-delay:9s}
.shard-11{left:8%;width:7px;height:11px;animation-duration:16s;animation-delay:10s}
.shard-12{left:50%;width:11px;height:17px;animation-duration:21s;animation-delay:4s}
@keyframes float-shard { 0%{transform:translateY(110vh) rotate(0deg);opacity:0} 10%{opacity:0.7} 90%{opacity:0.7} 100%{transform:translateY(-10vh) rotate(720deg);opacity:0} }

/* ===== CONTAINER ===== */
.container { position: relative; z-index: 10; max-width: 960px; margin: 0 auto; padding: 100px 20px 60px; display: flex; flex-direction: column; align-items: center; gap: 70px; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 8px; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; color: var(--crystal-secondary); background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.15); padding: 6px 16px; border-radius: 20px; margin-bottom: 14px; letter-spacing: 1px; text-transform: uppercase; }
.section-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; background: linear-gradient(135deg, var(--text-primary), var(--crystal-glow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== HERO ===== */
.hero { text-align: center; padding-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 18px; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 500; color: var(--crystal-emerald); background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15); padding: 8px 18px; border-radius: 30px; animation: badge-glow 3s ease-in-out infinite; }
.badge-pulse { width: 8px; height: 8px; background: var(--crystal-emerald); border-radius: 50%; animation: dot-pulse 1.5s ease-in-out infinite; box-shadow: 0 0 8px rgba(16,185,129,0.5); }
@keyframes badge-glow { 0%,100%{box-shadow:0 0 0 rgba(16,185,129,0)} 50%{box-shadow:0 0 20px rgba(16,185,129,0.1)} }

.logo-wrapper { position: relative; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; margin: 10px auto; }
.logo-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(123,104,238,0.4), transparent 65%); animation: pulse-glow 3s ease-in-out infinite; }
.logo-ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 1px solid; animation: ring-rotate linear infinite; }
.logo-ring-1 { width: 180px; height: 180px; margin-left: -90px; margin-top: -90px; border-color: rgba(123,104,238,0.2); animation-duration: 12s; }
.logo-ring-2 { width: 205px; height: 205px; margin-left: -102.5px; margin-top: -102.5px; border-color: rgba(0,212,255,0.12); border-style: dashed; animation-duration: 18s; animation-direction: reverse; }
.logo-ring-3 { width: 220px; height: 220px; margin-left: -110px; margin-top: -110px; border-color: rgba(224,64,251,0.08); animation-duration: 25s; border-style: dotted; }
.logo-hexagon { position: relative; z-index: 2; }
.logo-img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 0 40px rgba(123,104,238,0.6)); animation: logo-float 4s ease-in-out infinite; }
@keyframes pulse-glow { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.6} 50%{transform:translate(-50%,-50%) scale(1.2);opacity:1} }
@keyframes ring-rotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes logo-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.token-name { font-family: var(--font-display); font-size: 4.5rem; font-weight: 800; background: linear-gradient(135deg, #a78bfa 0%, #7b68ee 25%, #00d4ff 50%, #e040fb 75%, #a78bfa 100%); background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradient-shift 6s ease-in-out infinite; letter-spacing: -2px; line-height: 1.1; }
.token-symbol-prefix { font-weight: 400; opacity: 0.7; }
@keyframes gradient-shift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

.token-tagline { font-size: 1rem; font-weight: 500; color: var(--crystal-glow); letter-spacing: 4px; text-transform: uppercase; opacity: 0.9; }
.tagline-crystal { color: var(--crystal-secondary); font-size: 0.7rem; }
.token-description { font-size: 0.95rem; color: var(--text-secondary); max-width: 520px; line-height: 1.8; }
.token-description strong { color: var(--crystal-secondary); }
.token-description .highlight { color: var(--crystal-primary); font-weight: 600; }

.hero-features { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.feature-chip { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 30px; background: var(--glass-bg); border: 1px solid var(--glass-border); font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; transition: all 0.3s; }
.feature-chip:hover { border-color: var(--crystal-primary); background: var(--glass-hover); color: var(--text-primary); transform: translateY(-2px); }
.chip-icon { font-size: 0.85rem; }

.hero-cta { display: flex; gap: 14px; margin-top: 8px; }
.cta-primary { display: flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--crystal-deep), var(--crystal-primary), var(--crystal-accent)); color: white; text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; transition: all 0.4s; box-shadow: 0 4px 30px rgba(123,104,238,0.4); position: relative; overflow: hidden; }
.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 45px rgba(123,104,238,0.55); }
.cta-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); animation: btn-shimmer 3s ease-in-out infinite; }
.cta-arrow { transition: transform 0.3s; }
.cta-primary:hover .cta-arrow { transform: translateX(4px); }
.cta-secondary { display: flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-md); background: transparent; border: 1px solid var(--glass-border); color: var(--text-secondary); text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; transition: all 0.3s; }
.cta-secondary:hover { border-color: var(--crystal-primary); color: var(--text-primary); background: var(--glass-bg); }

/* ===== STATS ===== */
.stats-section { width: 100%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { position: relative; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 28px 18px 22px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); overflow: hidden; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); cursor: default; transform-style: preserve-3d; }
.stat-card:hover { background: var(--bg-card-hover); border-color: rgba(123,104,238,0.35); transform: translateY(-6px); box-shadow: 0 25px 60px rgba(123,104,238,0.15), 0 0 60px rgba(123,104,238,0.05); }
.stat-card-glow { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); width: 100px; height: 100px; border-radius: 50%; background: radial-gradient(circle, rgba(123,104,238,0.2), transparent 70%); opacity: 0; transition: opacity 0.4s; }
.stat-card:hover .stat-card-glow { opacity: 1; }
.stat-card-shine { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(115deg, transparent 40%, rgba(123,104,238,0.05) 45%, rgba(0,212,255,0.07) 50%, rgba(123,104,238,0.05) 55%, transparent 60%); transform: rotate(0deg); transition: transform 0.6s; pointer-events: none; }
.stat-card:hover .stat-card-shine { transform: rotate(180deg); }
.stat-icon-wrapper { position: relative; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.stat-icon-bg { position: absolute; inset: 0; border-radius: 14px; background: linear-gradient(135deg, rgba(123,104,238,0.15), rgba(0,212,255,0.08)); border: 1px solid rgba(123,104,238,0.1); }
.stat-icon { font-size: 1.2rem; position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; color: var(--crystal-secondary); }
.stat-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); font-weight: 500; }
.stat-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }
.stat-value small { font-size: 0.6rem; color: var(--text-secondary); font-weight: 400; display: block; margin-top: 2px; }
.stat-badge { font-size: 0.6rem; padding: 3px 10px; border-radius: 20px; background: rgba(123,104,238,0.1); color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; }
.stat-badge.good { background: rgba(16,185,129,0.1); color: var(--crystal-emerald); }
.stat-badge.neutral { background: rgba(0,212,255,0.08); color: var(--crystal-secondary); }
.stat-badge.live { background: rgba(239,68,68,0.08); color: #ef4444; display: flex; align-items: center; gap: 4px; }
.live-dot { width: 5px; height: 5px; background: #ef4444; border-radius: 50%; animation: dot-pulse 1.5s ease-in-out infinite; }

/* ===== PROGRESS ===== */
.progress-section { width: 100%; }
.progress-container { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 32px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.progress-header h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.progress-live-badge { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; color: #ef4444; background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.12); padding: 4px 12px; border-radius: 20px; font-weight: 500; }
.progress-bar-wrapper { position: relative; margin-bottom: 20px; }
.progress-bar { width: 100%; height: 14px; background: rgba(123,104,238,0.08); border-radius: 10px; overflow: hidden; position: relative; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--crystal-deep), var(--crystal-primary), var(--crystal-secondary), var(--crystal-accent)); background-size: 300% 100%; border-radius: 10px; animation: progress-gradient 4s ease-in-out infinite; position: relative; transition: width 2s cubic-bezier(0.4,0,0.2,1); }
.progress-shimmer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%); animation: shimmer 2s linear infinite; }
.progress-glow { position: absolute; top: -2px; right: 0; width: 20px; height: calc(100% + 4px); background: rgba(255,255,255,0.5); border-radius: 50%; filter: blur(4px); }
@keyframes progress-gradient { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
.progress-crystal-marker { position: absolute; top: 50%; left: 0%; transform: translate(-50%,-50%); transition: left 2s cubic-bezier(0.4,0,0.2,1); z-index: 5; }
.marker-crystal { font-size: 1.2rem; color: var(--crystal-secondary); filter: drop-shadow(0 0 10px rgba(123,104,238,0.7)); animation: marker-bounce 2s ease-in-out infinite; }
.marker-tooltip { position: absolute; top: -28px; left: 50%; transform: translateX(-50%); font-size: 0.65rem; font-family: var(--font-mono); background: var(--crystal-deep); color: white; padding: 3px 8px; border-radius: 6px; white-space: nowrap; }
@keyframes marker-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.progress-info { display: flex; justify-content: space-between; align-items: center; }
.progress-stat { text-align: center; flex: 1; }
.progress-label { display: block; font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.progress-value { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--text-primary); }
.progress-value.accent { color: var(--crystal-secondary); }
.progress-divider { width: 1px; height: 30px; background: var(--glass-border); }

/* ===== MINT SECTION ===== */
.mint-section { width: 100%; max-width: 520px; }
.mint-card { position: relative; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius-xl); padding: 40px 34px; backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); overflow: hidden; transition: border-color 0.3s; }
.mint-card:hover { border-color: rgba(123,104,238,0.3); }
.mint-card-border { position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; border-radius: 33px; background: conic-gradient(from 0deg, transparent 0%, var(--crystal-primary) 8%, transparent 16%, transparent 50%, var(--crystal-secondary) 58%, transparent 66%); z-index: -1; animation: border-spin 8s linear infinite; opacity: 0; transition: opacity 0.4s; }
.mint-card:hover .mint-card-border { opacity: 0.5; }
.mint-card-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at top, rgba(123,104,238,0.05), transparent 60%); pointer-events: none; }
@keyframes border-spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.mint-header { text-align: center; margin-bottom: 28px; position: relative; }
.mint-icon-row { margin-bottom: 14px; }
.mint-main-icon { font-size: 2.5rem; filter: drop-shadow(0 0 20px rgba(123,104,238,0.5)); }
.mint-header h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; background: linear-gradient(135deg, var(--crystal-glow), var(--crystal-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mint-header p { font-size: 0.82rem; color: var(--text-muted); }
.mint-amount-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; }
.mint-amount-hint { color: var(--text-muted); font-size: 0.7rem; }
.mint-amount-selector { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; }
.amount-btn { position: relative; font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; background: rgba(123,104,238,0.06); border: 1px solid rgba(123,104,238,0.15); color: var(--text-secondary); padding: 14px 10px; border-radius: var(--radius-md); cursor: pointer; transition: all 0.3s; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.amount-btn:hover { background: rgba(123,104,238,0.12); color: var(--text-primary); border-color: rgba(123,104,238,0.35); transform: translateY(-2px); }
.amount-btn.active { background: linear-gradient(135deg, rgba(123,104,238,0.2), rgba(0,212,255,0.1)); border-color: var(--crystal-primary); color: var(--text-primary); box-shadow: 0 0 25px rgba(123,104,238,0.2), inset 0 0 20px rgba(123,104,238,0.05); }
.amt-mult { font-size: 1rem; font-weight: 700; }
.amt-tokens { font-size: 0.6rem; color: var(--text-muted); letter-spacing: 1px; }
.amt-popular { position: absolute; top: -8px; right: -4px; font-size: 0.5rem; background: linear-gradient(135deg, var(--crystal-deep), var(--crystal-primary)); color: white; padding: 2px 7px; border-radius: 8px; font-weight: 600; letter-spacing: 0.5px; }
.amt-whale { position: absolute; top: -6px; right: -2px; font-size: 0.7rem; }

.mint-summary { background: rgba(0,0,0,0.25); border-radius: var(--radius-md); padding: 20px; margin-bottom: 24px; display: flex; flex-direction: column; gap: 0; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.summary-label { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.summary-icon { font-size: 0.9rem; }
.summary-value { color: var(--text-primary); font-weight: 600; font-family: var(--font-display); font-size: 0.9rem; }
.summary-value.highlight-value { color: var(--crystal-secondary); }
.summary-divider { height: 1px; background: rgba(123,104,238,0.08); }
.network-val { display: flex; align-items: center; gap: 6px; }
.chain-dot { width: 6px; height: 6px; background: var(--crystal-emerald); border-radius: 50%; box-shadow: 0 0 6px rgba(16,185,129,0.5); }

.connect-btn { width: 100%; padding: 18px 32px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: none; border-radius: var(--radius-md); cursor: pointer; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--crystal-deep) 0%, var(--crystal-primary) 40%, var(--crystal-accent) 100%); color: white; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 4px 30px rgba(123,104,238,0.4), inset 0 1px 0 rgba(255,255,255,0.1); }
.connect-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 50px rgba(123,104,238,0.55), 0 0 80px rgba(123,104,238,0.15), inset 0 1px 0 rgba(255,255,255,0.15); }
.connect-btn:active { transform: translateY(0); }
.btn-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--crystal-deep), var(--crystal-primary), var(--crystal-accent)); opacity: 0; transition: opacity 0.3s; }
.connect-btn:hover .btn-bg { opacity: 0.3; }
.btn-text { position: relative; z-index: 2; }
.btn-shimmer { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); animation: btn-shimmer 3s ease-in-out infinite; }
@keyframes btn-shimmer { 0%{left:-100%} 100%{left:200%} }
.btn-particles { position: absolute; inset: 0; pointer-events: none; }
.btn-particles span { position: absolute; width: 4px; height: 4px; background: rgba(255,255,255,0.6); border-radius: 50%; opacity: 0; }
.connect-btn:hover .btn-particles span:nth-child(1) { animation: btn-particle 0.8s ease-out forwards; top: 40%; left: 15%; }
.connect-btn:hover .btn-particles span:nth-child(2) { animation: btn-particle 0.8s ease-out 0.08s forwards; top: 25%; left: 35%; }
.connect-btn:hover .btn-particles span:nth-child(3) { animation: btn-particle 0.8s ease-out 0.16s forwards; top: 50%; left: 55%; }
.connect-btn:hover .btn-particles span:nth-child(4) { animation: btn-particle 0.8s ease-out 0.12s forwards; top: 30%; left: 75%; }
.connect-btn:hover .btn-particles span:nth-child(5) { animation: btn-particle 0.8s ease-out 0.2s forwards; top: 45%; left: 90%; }
.connect-btn:hover .btn-particles span:nth-child(6) { animation: btn-particle 0.8s ease-out 0.05s forwards; top: 35%; left: 50%; }
@keyframes btn-particle { 0%{opacity:1;transform:translateY(0) scale(1)} 100%{opacity:0;transform:translateY(-35px) scale(0)} }

.mint-security { display: flex; justify-content: center; gap: 18px; margin-top: 20px; }
.security-item { display: flex; align-items: center; gap: 5px; font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }

/* ===== ROADMAP ===== */
.roadmap-section { width: 100%; }
.roadmap-timeline { position: relative; padding-left: 40px; display: flex; flex-direction: column; gap: 0; }
.timeline-line { position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--crystal-primary), var(--crystal-secondary), rgba(123,104,238,0.15)); border-radius: 2px; }

.roadmap-phase { position: relative; display: flex; gap: 24px; padding-bottom: 40px; opacity: 0; transform: translateY(30px); animation: fade-up 0.8s cubic-bezier(0.4,0,0.2,1) forwards; }
.roadmap-phase:nth-child(2) { animation-delay: 0.2s; }
.roadmap-phase:nth-child(3) { animation-delay: 0.4s; }
.roadmap-phase:nth-child(4) { animation-delay: 0.6s; }
.roadmap-phase:nth-child(5) { animation-delay: 0.8s; }
.roadmap-phase:last-child { padding-bottom: 0; }

.phase-marker { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; position: absolute; left: -40px; }
.marker-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--text-muted); position: relative; z-index: 2; transition: all 0.3s; }
.completed .marker-dot { background: linear-gradient(135deg, var(--crystal-emerald), #34d399); border-color: var(--crystal-emerald); color: white; font-weight: 700; box-shadow: 0 0 15px rgba(16,185,129,0.3); }
.active .marker-dot, .active-dot { background: linear-gradient(135deg, var(--crystal-deep), var(--crystal-primary)) !important; border-color: var(--crystal-primary) !important; color: white !important; box-shadow: 0 0 20px rgba(123,104,238,0.4); animation: dot-glow 2s ease-in-out infinite; }
@keyframes dot-glow { 0%,100% { box-shadow: 0 0 15px rgba(123,104,238,0.3); } 50% { box-shadow: 0 0 30px rgba(123,104,238,0.6); } }
.upcoming .marker-dot { background: var(--bg-secondary); border-color: rgba(123,104,238,0.15); color: var(--text-muted); }
.phase-quarter { font-family: var(--font-mono); font-size: 0.6rem; color: var(--text-muted); letter-spacing: 1px; white-space: nowrap; font-weight: 500; }

.phase-card { flex: 1; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: all 0.3s; }
.phase-card:hover { border-color: rgba(123,104,238,0.25); transform: translateY(-2px); }
.phase-card.glow-card { border-color: rgba(123,104,238,0.3); box-shadow: 0 0 40px rgba(123,104,238,0.08), inset 0 0 30px rgba(123,104,238,0.03); }
.phase-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.65rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; background: rgba(123,104,238,0.1); color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px; }
.phase-badge.done { background: rgba(16,185,129,0.1); color: var(--crystal-emerald); }
.phase-badge.current { background: rgba(123,104,238,0.12); color: var(--crystal-primary); }
.phase-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.phase-subtitle { font-size: 0.8rem; color: var(--crystal-glow); margin-bottom: 16px; font-weight: 500; }
.phase-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.phase-list li { font-size: 0.82rem; color: var(--text-secondary); padding-left: 22px; position: relative; line-height: 1.4; }
.phase-list li::before { content: '○'; position: absolute; left: 0; color: var(--text-muted); font-size: 0.7rem; top: 1px; }
.phase-list li.done { color: var(--text-primary); }
.phase-list li.done::before { content: '✓'; color: var(--crystal-emerald); font-weight: 700; }
.phase-list li.active-item { color: var(--crystal-glow); }
.phase-list li.active-item::before { content: '◈'; color: var(--crystal-primary); animation: dot-pulse 1.5s ease-in-out infinite; }
.upcoming .phase-card { opacity: 0.7; }
.upcoming .phase-card:hover { opacity: 1; }


/* ===== TOKENOMICS ===== */
.tokenomics-section { width: 100%; }
.tokenomics-container { display: flex; gap: 40px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 40px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.tokenomics-chart { flex-shrink: 0; }
.donut-chart { position: relative; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; }
.donut-svg { width: 100%; height: 100%; transform: rotate(-90deg); filter: drop-shadow(0 0 15px rgba(0,255,200,0.15)); }
.donut-segment { transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.donut-segment.seg-1 { filter: drop-shadow(0 0 8px rgba(0,255,200,0.4)); }
.donut-segment.seg-2 { filter: drop-shadow(0 0 8px rgba(124,58,237,0.4)); }
.donut-segment.seg-3 { filter: drop-shadow(0 0 8px rgba(6,182,212,0.4)); }
.donut-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; display: flex; flex-direction: column; gap: 2px; }
.donut-total { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, #00ffc8, var(--crystal-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.donut-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }
.tokenomics-details { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.token-alloc { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: rgba(0,0,0,0.2); border-radius: var(--radius-md); border: 1px solid rgba(123,104,238,0.06); transition: all 0.3s; }
.token-alloc:hover { border-color: rgba(123,104,238,0.2); background: rgba(123,104,238,0.04); transform: translateX(4px); }
.alloc-color { width: 4px; min-height: 50px; border-radius: 4px; flex-shrink: 0; margin-top: 2px; }
.alloc-info { flex: 1; }
.alloc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.alloc-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--text-primary); }
.alloc-pct { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--crystal-secondary); }
.alloc-amount { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); margin-bottom: 6px; display: block; }
.alloc-desc { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }
.tokenomics-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 6px; }
.highlight-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 8px; background: rgba(0,255,200,0.04); border: 1px solid rgba(0,255,200,0.1); border-radius: var(--radius-sm); text-align: center; font-size: 0.7rem; color: var(--text-secondary); font-weight: 500; transition: all 0.3s; }
.highlight-item:hover { border-color: rgba(0,255,200,0.3); background: rgba(0,255,200,0.08); transform: translateY(-2px); }
.highlight-icon { font-size: 1.1rem; }

/* ===== NETWORK ===== */
.network-section { width: 100%; }
.network-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 36px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); display: flex; gap: 40px; align-items: center; }
.network-visual { flex-shrink: 0; }
.network-orb { position: relative; width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; }
.orb-ring { position: absolute; border-radius: 50%; border: 1px solid; animation: ring-rotate linear infinite; }
.orb-ring-1 { inset: 0; border-color: rgba(123,104,238,0.25); animation-duration: 8s; }
.orb-ring-2 { inset: -10px; border-color: rgba(0,212,255,0.15); border-style: dashed; animation-duration: 12s; animation-direction: reverse; }
.orb-core { font-size: 2.2rem; font-family: var(--font-display); font-weight: 800; color: var(--crystal-secondary); filter: drop-shadow(0 0 15px rgba(123,104,238,0.6)); animation: logo-float 3s ease-in-out infinite; }
.network-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.network-item { padding: 14px 16px; background: rgba(0,0,0,0.2); border-radius: var(--radius-sm); border: 1px solid rgba(123,104,238,0.06); transition: all 0.3s; }
.network-item:hover { border-color: rgba(123,104,238,0.2); background: rgba(123,104,238,0.04); }
.network-label { display: block; font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.network-value { font-family: var(--font-display); font-size: 0.85rem; color: var(--crystal-secondary); font-weight: 600; }

/* ===== FOOTER ===== */
.footer { width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--crystal-glow); }
.social-links { display: flex; gap: 10px; }
.social-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(123,104,238,0.06); border: 1px solid var(--glass-border); color: var(--text-secondary); text-decoration: none; transition: all 0.3s; }
.social-btn:hover { color: var(--crystal-secondary); border-color: var(--crystal-primary); background: var(--glass-hover); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(123,104,238,0.2); }
.footer-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--glass-border), transparent); }
.contract-address { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
.address { color: var(--crystal-secondary); font-family: var(--font-mono); font-size: 0.78rem; cursor: pointer; transition: color 0.3s; text-decoration: underline; text-decoration-style: dashed; text-underline-offset: 3px; }
.address:hover { color: var(--crystal-primary); }
.copy-btn { background: none; border: 1px solid var(--glass-border); color: var(--text-muted); padding: 6px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.copy-btn:hover { border-color: var(--crystal-primary); color: var(--crystal-secondary); }
.copyright { font-size: 0.68rem; color: var(--text-muted); opacity: 0.5; }

/* ===== SCROLL ANIMATIONS ===== */
.hero, .stat-card, .progress-container, .mint-card, .network-card, .phase-card, .tokenomics-container { opacity: 0; transform: translateY(30px); animation: fade-up 0.8s cubic-bezier(0.4,0,0.2,1) forwards; }
.hero{animation-delay:.1s} .stat-card:nth-child(1){animation-delay:.2s} .stat-card:nth-child(2){animation-delay:.3s} .stat-card:nth-child(3){animation-delay:.4s} .stat-card:nth-child(4){animation-delay:.5s}
.progress-container{animation-delay:.6s} .mint-card{animation-delay:.7s}
.network-card{animation-delay:.3s}
.tokenomics-container{animation-delay:.4s}
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

/* ===== TOOLTIP ===== */
.tooltip { position: fixed; background: var(--bg-secondary); border: 1px solid var(--glass-border); color: var(--crystal-secondary); padding: 8px 14px; border-radius: 10px; font-size: 0.78rem; font-family: var(--font-display); pointer-events: none; z-index: 10000; opacity: 0; transform: translateY(5px); transition: all 0.2s; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.tooltip.show { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .tokenomics-grid { grid-template-columns: 1fr; }
    .network-card { flex-direction: column; text-align: center; }
    .network-grid { grid-template-columns: repeat(2, 1fr); }
    .tokenomics-container { flex-direction: column; align-items: center; }
    .tokenomics-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .navbar { padding: 12px 16px; }
    .nav-links { display: none; }
    .container { padding: 90px 16px 50px; gap: 50px; }
    .token-name { font-size: 3rem; }
    .token-tagline { font-size: 0.85rem; letter-spacing: 2px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .network-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-wrapper { width: 160px; height: 160px; }
    .logo-img { width: 100px; height: 100px; }
    .logo-ring-1{width:140px;height:140px;margin-left:-70px;margin-top:-70px}
    .logo-ring-2{width:155px;height:155px;margin-left:-77.5px;margin-top:-77.5px}
    .logo-ring-3{width:165px;height:165px;margin-left:-82.5px;margin-top:-82.5px}
    .logo-glow{width:150px;height:150px}
    .mint-card { padding: 30px 22px; }
    .footer-top { flex-direction: column; gap: 16px; }
    .hero-cta { flex-direction: column; width: 100%; max-width: 300px; }
    .cta-primary, .cta-secondary { justify-content: center; }
    .section-title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .token-name { font-size: 2.4rem; }
    .stat-card { padding: 20px 12px; }
    .stat-value { font-size: 1.15rem; }
    .progress-container { padding: 22px 18px; }
    .connect-btn { padding: 16px 24px; font-size: 0.95rem; }
    .mint-amount-selector { grid-template-columns: repeat(2, 1fr); }
    .network-grid { grid-template-columns: 1fr; }
    .hero-features { gap: 8px; }
    .feature-chip { padding: 6px 12px; font-size: 0.7rem; }
    .mint-security { flex-wrap: wrap; justify-content: center; gap: 10px; }
}
