/* ============================================================
   GRAND THEFT SOLANA — $GTSOL
   GTA + Comic neon theme
   ============================================================ */

:root {
  --pink:   #ff2e9a;
  --magenta:# d4179e;
  --purple: #7b2ff7;
  --cyan:   #18e0ff;
  --teal:   #2dffb0;
  --yellow: #ffd23f;

  --bg:     #0a0612;
  --bg2:    #120a24;
  --ink:    #f5e9ff;
  --line:   rgba(255, 46, 154, 0.35);

  --shadow-pink: 0 0 24px rgba(255, 46, 154, .55);
  --shadow-cyan: 0 0 24px rgba(24, 224, 255, .5);

  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Oswald', sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  /* layered comic / neon background */
  background-image:
    radial-gradient(circle at 15% 12%, rgba(123,47,247,.35), transparent 45%),
    radial-gradient(circle at 85% 18%, rgba(24,224,255,.22), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(255,46,154,.28), transparent 55%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 2px, transparent 2px 4px),
    radial-gradient(rgba(255,255,255,.10) 1px, transparent 1.4px);
  background-size: auto, auto, auto, auto, 22px 22px;
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

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

.accent { color: var(--cyan); }
.hl { color: var(--pink); font-weight: 700; }
.emoji { white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Russo One', sans-serif;
  font-size: .95rem;
  letter-spacing: .06em;
  padding: 14px 26px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-transform: uppercase;
}
.btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: var(--shadow-pink);
  border-color: rgba(255,255,255,.25);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 36px rgba(255,46,154,.8); }
.btn--ghost {
  background: rgba(24,224,255,.08);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}
.btn--ghost:hover { transform: translateY(-3px) scale(1.02); background: rgba(24,224,255,.18); }
.btn--small { padding: 9px 16px; font-size: .8rem; }

/* ---------- Panels (comic outline cards) ---------- */
.panel {
  background: linear-gradient(160deg, rgba(28,16,48,.92), rgba(12,8,24,.92));
  border: 2px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.55), inset 0 0 0 1px rgba(24,224,255,.08);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(8,5,16,.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
.nav.scrolled { background: rgba(8,5,16,.92); }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 44px; height: 44px; border-radius: 50%; box-shadow: var(--shadow-pink); }
.nav__name { font-family: 'Russo One', sans-serif; font-size: 1.05rem; letter-spacing: .04em; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-weight: 600; letter-spacing: .04em; transition: color .15s; text-transform: uppercase; font-size: .9rem; }
.nav__links a:not(.btn):hover { color: var(--cyan); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 26px; height: 3px; background: var(--cyan); border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 130px clamp(16px,4vw,40px) 0; overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 35%, rgba(255,46,154,.30), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center;
  min-height: 72vh; position: relative; z-index: 2;
}
.badge {
  display: inline-block; font-family: 'Russo One', sans-serif; font-size: .8rem; letter-spacing: .12em;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
  background: rgba(24,224,255,.1); border: 1px solid var(--cyan); color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}
.hero__title { font-family: 'Bangers', cursive; line-height: .92; margin-bottom: 18px; }
.hero__title .line { display: block; }
.hero__title .stroke {
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  letter-spacing: .02em;
  text-shadow:
    3px 3px 0 var(--purple),
    6px 6px 0 rgba(0,0,0,.45),
    0 0 30px rgba(123,47,247,.6);
}
.hero__title .script {
  font-size: clamp(3.4rem, 9vw, 7rem);
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--yellow));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
  filter: drop-shadow(0 4px 18px rgba(255,46,154,.55));
  margin-top: -6px;
}
.hero__bio { font-size: 1.2rem; max-width: 460px; margin-bottom: 28px; color: #e9d9ff; }
.hero__bio b { color: var(--yellow); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero__stats { display: flex; gap: 14px; flex-wrap: wrap; }
.stat {
  flex: 1; min-width: 110px; text-align: center; padding: 14px 10px;
  border-radius: 12px; border: 1px solid var(--line);
  background: rgba(20,10,36,.6);
}
.stat__num { display: block; font-family: 'Russo One', sans-serif; font-size: 1.25rem; color: var(--cyan); }
.stat__lbl { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }

.hero__art { position: relative; display: flex; justify-content: center; }
.hero__chars {
  width: 100%; max-width: 460px;
  filter: drop-shadow(0 18px 40px rgba(255,46,154,.45));
  animation: float 6s ease-in-out infinite;
}
.hero__badge {
  position: absolute; bottom: -10px; right: 0; width: 110px; border-radius: 50%;
  box-shadow: var(--shadow-cyan); border: 3px solid rgba(24,224,255,.5);
  animation: float 5s ease-in-out infinite reverse;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* marquee */
.marquee {
  margin-top: 40px; overflow: hidden; white-space: nowrap;
  border-top: 2px solid var(--line); border-bottom: 2px solid var(--line);
  background: linear-gradient(90deg, rgba(255,46,154,.12), rgba(24,224,255,.12));
  padding: 12px 0;
}
.marquee__track { display: inline-flex; animation: scroll 22s linear infinite; }
.marquee__track span {
  font-family: 'Russo One', sans-serif; font-size: 1.05rem; letter-spacing: .06em;
  color: var(--yellow); text-shadow: 0 0 12px rgba(255,210,63,.5);
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHARED
   ============================================================ */
section { position: relative; }
.about, .howtobuy, .chart, .joinus { padding: 90px clamp(16px,4vw,40px); max-width: var(--maxw); margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-title {
  font-family: 'Bangers', cursive; font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: .03em; color: #fff;
  text-shadow: 3px 3px 0 var(--purple), 0 0 26px rgba(123,47,247,.5);
}
.section-sub { font-size: 1.1rem; letter-spacing: .08em; text-transform: uppercase; opacity: .75; margin-top: 6px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about__art { padding: 12px; overflow: hidden; }
.about__art img { border-radius: 10px; }
.about__text p { font-size: 1.15rem; margin-bottom: 18px; color: #ecdcff; }
.about__text b { color: var(--cyan); }
.about__list { list-style: none; display: grid; gap: 12px; margin-top: 24px; }
.about__list li {
  display: flex; align-items: center; gap: 12px; font-size: 1.05rem; font-weight: 600;
  padding: 12px 16px; border-radius: 10px;
  background: rgba(24,224,255,.06); border-left: 3px solid var(--pink);
}
.about__list span { font-size: 1.3rem; }

/* ============================================================
   HOW TO BUY
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { padding: 28px 22px; position: relative; transition: transform .18s ease, box-shadow .18s ease; }
.step:hover { transform: translateY(-8px); box-shadow: 0 0 32px rgba(255,46,154,.35); border-color: var(--pink); }
.step__num {
  font-family: 'Bangers', cursive; font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--cyan); margin-bottom: 12px;
}
.step h3 { font-family: 'Russo One', sans-serif; font-size: 1.15rem; margin-bottom: 10px; color: var(--yellow); }
.step p { font-size: 1rem; opacity: .88; }
.step b { color: var(--cyan); }
.howtobuy__cta { text-align: center; margin-top: 44px; }

/* ============================================================
   CHART
   ============================================================ */
.chart__frame { padding: 10px; overflow: hidden; }
.chart__frame iframe { width: 100%; height: 560px; border: 0; border-radius: 10px; display: block; background: #0a0612; }
.chart__cta { text-align: center; margin-top: 28px; }
.chart__soon {
  height: 560px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 10px; border-radius: 10px;
  background: radial-gradient(circle at 50% 40%, rgba(255,46,154,.18), rgba(10,6,18,.9));
}
.chart__soon-emoji { font-size: 3rem; }
.chart__soon h3 { font-family: 'Bangers', cursive; font-size: 2rem; letter-spacing: .04em; color: var(--cyan); }
.chart__soon p { max-width: 420px; opacity: .8; }
.chart__soon code { color: var(--yellow); background: rgba(255,210,63,.1); padding: 2px 6px; border-radius: 4px; }

/* ============================================================
   JOIN US
   ============================================================ */
.joinus__banner {
  max-width: 920px; margin: 0 auto 50px;
  border-radius: 18px; overflow: hidden;
  border: 3px solid var(--pink);
  box-shadow: 0 0 40px rgba(255,46,154,.5);
}
.joinus__banner img { width: 100%; }
.joinus__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 920px; margin: 0 auto; }
.social {
  display: flex; align-items: center; gap: 16px; padding: 22px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.social:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: var(--shadow-cyan); }
.social__icon { font-size: 2rem; line-height: 1; }
.social__txt { display: flex; flex-direction: column; }
.social__txt b { font-family: 'Russo One', sans-serif; font-size: 1.1rem; }
.social__txt small { opacity: .7; font-size: .9rem; }
.social--buy { border-color: var(--yellow); }
.social--buy:hover { border-color: var(--yellow); box-shadow: 0 0 24px rgba(255,210,63,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { text-align: center; padding: 60px 20px 40px; border-top: 1px solid var(--line); margin-top: 40px; }
.footer__logo { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px; box-shadow: var(--shadow-pink); }
.footer__name { font-family: 'Russo One', sans-serif; font-size: 1.3rem; margin-bottom: 16px; }
.footer__disc { max-width: 640px; margin: 0 auto 14px; font-size: .85rem; opacity: .55; line-height: 1.6; }
.footer__copy { font-size: .85rem; opacity: .5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links {
    position: fixed; top: 68px; right: 0; left: 0;
    flex-direction: column; gap: 18px; padding: 24px;
    background: rgba(8,5,16,.97); border-bottom: 1px solid var(--line);
    transform: translateY(-150%); transition: transform .3s ease;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 30px; }
  .hero__copy { order: 2; }
  .hero__art { order: 1; }
  .hero__bio, .hero__cta, .hero__stats { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero__chars { max-width: 320px; }
  .about__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .joinus__links { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; }
  .chart__frame iframe { height: 460px; }
}
