:root {
  --navy: #0a1a3f;
  --navy-deep: #05102a;
  --navy-darker: #030a1c;
  --red: #d72631;
  --red-bright: #ff2a3c;
  --blue: #1e3a8a;
  --blue-bright: #2f5bd6;
  --gold: #ffd24a;
  --gold-deep: #e0a72e;
  --white: #f6f7fb;
  --ink: #eaf0ff;
  --muted: #9fb0d8;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --font-display: "Anton", "Bebas Neue", sans-serif;
  --font-head: "Bebas Neue", sans-serif;
  --font-body: "Oswald", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-darker);
  color: var(--ink);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ============ ANIMATED BACKGROUND ============ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
}

.bg-gradient {
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(47, 91, 214, 0.35), transparent 60%),
    radial-gradient(900px 700px at 10% 110%, rgba(215, 38, 49, 0.3), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), var(--navy-darker) 60%, #02060f);
  animation: hueShift 18s ease-in-out infinite alternate;
}

@keyframes hueShift {
  0% { filter: hue-rotate(0deg) saturate(1); }
  100% { filter: hue-rotate(18deg) saturate(1.25); }
}

.bg-stripes {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 40px,
    rgba(215, 38, 49, 0.05) 40px,
    rgba(215, 38, 49, 0.05) 80px
  );
  opacity: 0.5;
  animation: slideStripes 30s linear infinite;
}

@keyframes slideStripes {
  from { background-position: 0 0; }
  to { background-position: 400px 0; }
}

.bg-glow {
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  mix-blend-mode: screen;
}
.glow-red {
  width: 50vw; height: 50vw;
  background: var(--red-bright);
  top: -10vw; right: -10vw;
  animation: floatGlow 14s ease-in-out infinite alternate;
}
.glow-blue {
  width: 45vw; height: 45vw;
  background: var(--blue-bright);
  bottom: -12vw; left: -8vw;
  animation: floatGlow 17s ease-in-out infinite alternate-reverse;
}
@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(6vw, 5vw) scale(1.2); }
}

#stars-canvas { z-index: -9; }

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 2px,
    transparent 3px
  );
  opacity: 0.4;
}

/* ============ TICKER ============ */
.ticker {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(215, 38, 49, 0.4);
}
.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  padding: 0.5rem 0;
  animation: ticker 22s linear infinite;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  font-size: 1.05rem;
}
.ticker-track span { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 4vw;
  backdrop-filter: blur(14px);
  background: rgba(5, 16, 42, 0.6);
  border-bottom: 1px solid rgba(255, 210, 74, 0.18);
  transition: background 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(3, 10, 28, 0.92);
  padding: 0.45rem 4vw;
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 14px rgba(255, 210, 74, 0.5);
}
.nav-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--white);
}
.nav-title em { color: var(--red-bright); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-family: var(--font-head);
  letter-spacing: 1px;
  font-size: 1.1rem;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:not(.nav-cta):hover { color: var(--gold); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(215, 38, 49, 0.45);
  border: 1px solid rgba(255,255,255,0.15);
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  font-size: 1.15rem;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: #fff;
  box-shadow: 0 10px 28px rgba(215, 38, 49, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-ghost:hover { background: rgba(255, 210, 74, 0.12); }
.btn-social { color: #fff; }
.btn-x { background: linear-gradient(135deg, #111, #2b2b2b); border-color:#444; }
.btn-tg { background: linear-gradient(135deg, #1c8adb, #2aabee); box-shadow: 0 10px 28px rgba(42,171,238,0.45); }

.pulse { animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(215, 38, 49, 0.5); }
  50% { box-shadow: 0 10px 40px rgba(255, 42, 60, 0.9), 0 0 0 6px rgba(215,38,49,0.12); }
}

/* ============ SECTIONS ============ */
.section {
  position: relative;
  padding: 6rem 6vw;
  max-width: 1300px;
  margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: 2px;
  line-height: 0.95;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.section-title span {
  color: var(--red-bright);
  -webkit-text-stroke: 1px rgba(255,210,74,0.4);
}
.section-sub {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 6vw 4rem;
  overflow: hidden;
}
.hero-inner { max-width: 1300px; margin: 0 auto; width: 100%; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: rgba(255, 210, 74, 0.08);
  color: var(--gold);
  margin-bottom: 1.6rem;
  text-align: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  line-height: 0.82;
  display: flex;
  flex-direction: column;
}
.hero-title .line-1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--ink);
  letter-spacing: 4px;
}
.hero-title .line-2 {
  font-size: clamp(4.5rem, 13vw, 11rem);
  background: linear-gradient(180deg, #fff 30%, #c9d6ff 60%, #7e93d9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 40px rgba(47,91,214,0.4);
  letter-spacing: 2px;
}
.hero-title .line-3 {
  font-size: clamp(4rem, 12vw, 10rem);
  background: linear-gradient(180deg, #ff6a72, var(--red) 60%, #7d0f16);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 6px;
  animation: redGlow 3s ease-in-out infinite alternate;
}
@keyframes redGlow {
  from { filter: drop-shadow(0 0 8px rgba(215,38,49,0.4)); }
  to { filter: drop-shadow(0 0 26px rgba(255,42,60,0.8)); }
}
.hero-symbol { margin-top: 1rem; font-size: 1.25rem; color: var(--muted); letter-spacing: 1px; }
.hero-symbol strong { color: var(--gold); }
.hero-bio {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: var(--ink);
  max-width: 520px;
  font-weight: 500;
}
.hero-ca {
  margin-top: 1.4rem;
  max-width: 560px;
}
.hero-ca-label {
  display: block;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.hero-ca-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 210, 74, 0.35);
  background: rgba(5, 16, 42, 0.75);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.hero-ca-box code {
  flex: 1;
  font-family: "Consolas", "Courier New", monospace;
  font-size: clamp(0.68rem, 2vw, 0.95rem);
  color: var(--white);
  word-break: break-all;
  line-height: 1.4;
}
.hero-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { margin-top: 2.5rem; display: flex; gap: 2.5rem; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.stat span { color: var(--muted); font-size: 0.95rem; letter-spacing: 1px; }

/* Hero visual / logo */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.logo-frame {
  position: relative;
  width: min(420px, 80vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  width: 86%;
  height: 86%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 50px rgba(255, 210, 74, 0.45), inset 0 0 30px rgba(0,0,0,0.4);
  animation: bob 5s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.logo-ring, .ring-2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 210, 74, 0.5);
  animation: spin 18s linear infinite;
}
.ring-2 {
  inset: -22px;
  border: 2px dotted rgba(47, 91, 214, 0.6);
  animation: spin 26s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.logo-shine {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.35), transparent 30%);
  animation: spin 6s linear infinite;
  z-index: 3;
  mix-blend-mode: overlay;
}
.float-emoji {
  position: absolute;
  font-size: 2.4rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
  animation: floaty 6s ease-in-out infinite;
  z-index: 4;
}
.float-emoji.e1 { top: 2%; left: 6%; animation-delay: 0s; }
.float-emoji.e2 { top: 12%; right: 0; animation-delay: 1s; }
.float-emoji.e3 { bottom: 6%; right: 8%; animation-delay: 2s; }
.float-emoji.e4 { bottom: 0; left: 12%; animation-delay: 1.5s; }
.float-emoji.e5 { top: 45%; left: -6%; animation-delay: 0.6s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

.scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-family: var(--font-head);
  letter-spacing: 2px;
  text-align: center;
  font-size: 0.9rem;
}
.scroll-hint span {
  display: block;
  width: 22px; height: 36px;
  border: 2px solid var(--muted);
  border-radius: 12px;
  margin: 0 auto 0.4rem;
  position: relative;
}
.scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; top: 6px; }
  50% { opacity: 1; top: 16px; }
  100% { opacity: 0; top: 22px; }
}

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; }
.about-card {
  background: linear-gradient(160deg, rgba(30,58,138,0.25), rgba(5,16,42,0.6));
  border: 1px solid rgba(255,210,74,0.18);
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.about-card p { margin-bottom: 1.1rem; font-size: 1.12rem; color: var(--ink); }
.about-card em { color: var(--gold); font-style: italic; }
.about-card strong { color: var(--red-bright); }
.about-punch {
  font-family: var(--font-head);
  font-size: 1.6rem !important;
  letter-spacing: 1px;
  color: var(--gold) !important;
  line-height: 1.2;
}
.about-lfg { font-size: 1.25rem !important; color: var(--white) !important; font-weight: 600; }
.about-side { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-content: start; }
.info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.3rem;
  transition: transform 0.25s, border-color 0.25s;
}
.info-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.info-card h3 {
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.info-card p { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); word-break: break-word; }
.info-card.contract { grid-column: 1 / -1; position: relative; }
.copy-btn {
  margin-top: 0.6rem;
  font-family: var(--font-head);
  letter-spacing: 1px;
  background: var(--gold);
  color: #1a1300;
  border: none;
  border-radius: 6px;
  padding: 0.3rem 0.9rem;
  cursor: pointer;
  transition: filter 0.2s;
}
.copy-btn:hover { filter: brightness(1.1); }

/* ============ HOW TO BUY ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.step {
  position: relative;
  background: linear-gradient(160deg, rgba(215,38,49,0.12), rgba(5,16,42,0.6));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 2rem 1.4rem;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.step:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}
.step-num {
  position: absolute;
  top: -10px; right: 8px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,210,74,0.12);
}
.step-icon { font-size: 2.6rem; margin-bottom: 0.8rem; }
.step h3 {
  font-family: var(--font-head);
  letter-spacing: 1px;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.step p { color: var(--muted); font-size: 1rem; }
.howtobuy-cta { text-align: center; margin-top: 3rem; }

/* ============ CHART ============ */
.chart-frame {
  background: rgba(5,16,42,0.6);
  border: 1px solid rgba(255,210,74,0.2);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  border-radius: 12px;
  overflow: hidden;
}
#dexscreener-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.chart-note { text-align: center; margin-top: 1rem; color: var(--muted); }
.chart-note a { color: var(--gold); }
.chart-note a:hover { text-decoration: underline; }

/* ============ JOIN US ============ */
.join-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,210,74,0.25);
}
.join-banner img { display: block; width: 100%; height: auto; }
.banner-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: bannerShine 4.5s ease-in-out infinite;
}
@keyframes bannerShine {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.join-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  text-align: center;
  padding: 3.5rem 6vw 2.5rem;
  border-top: 1px solid rgba(255,210,74,0.18);
  background: rgba(3,10,28,0.7);
}
.footer-logo {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  margin-bottom: 1rem;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--white);
}
.footer-disclaimer {
  max-width: 760px;
  margin: 1rem auto;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-copy { color: var(--muted); font-size: 0.85rem; }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-title { align-items: center; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-bio { margin-left: auto; margin-right: auto; }
  .hero-ca { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 70%;
    flex-direction: column;
    justify-content: center;
    background: rgba(3,10,28,0.97);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid rgba(255,210,74,0.2);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; z-index: 60; }
  .steps { grid-template-columns: 1fr; }
  .about-side { grid-template-columns: 1fr; }
  .section { padding: 4rem 6vw; }
  .hero-stats { gap: 1.4rem; }
  .stat b { font-size: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
