/* ===================================================================
   U.S. SOCCER MASCOT — $BANNER
   Comic-styled, horizontally-scrolling meme coin site
   =================================================================== */

:root {
  --navy:   #0a1a3f;
  --navy-2: #112a63;
  --red:    #b31942;
  --red-2:  #e11d48;
  --white:  #f7f5ec;
  --gold:   #ffd23f;
  --ink:    #0b0b12;
  --line:   5px solid var(--ink);
  --pop:    8px 8px 0 var(--ink);
  --pop-sm: 4px 4px 0 var(--ink);
}

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

html, body {
  height: 100%;
  overflow: hidden;            /* no vertical scroll */
  font-family: "Comic Neue", "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--navy);
}

/* ---------- Layered comic background ---------- */
.bg-fixed {
  position: fixed; inset: 0; z-index: 0;
  background: url("background.png") center 26% / cover no-repeat;
}
.bg-tint {
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(17,42,99,.35), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(179,25,66,.35), transparent 55%),
    linear-gradient(180deg, rgba(7,15,40,.55), rgba(7,15,40,.78));
}
.bg-halftone {
  position: fixed; inset: 0; z-index: 0; opacity: .12; pointer-events: none;
  background-image: radial-gradient(var(--ink) 1.6px, transparent 1.7px);
  background-size: 16px 16px;
}

/* ---------- Top bar ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  height: 76px; display: flex; align-items: center; gap: 18px;
  padding: 0 24px;
  background: var(--navy);
  border-bottom: var(--line);
  box-shadow: 0 6px 0 rgba(0,0,0,.35);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  width: 50px; height: 50px; border-radius: 50%;
  border: 3px solid var(--ink); background: var(--white);
  box-shadow: var(--pop-sm); object-fit: cover;
}
.brand-text {
  font-family: "Bangers", cursive; letter-spacing: 1.5px;
  font-size: 1.5rem; color: var(--white);
  text-shadow: 2px 2px 0 var(--red);
}
.topnav { display: flex; gap: 6px; margin-left: auto; flex-wrap: wrap; }
.topnav a {
  font-family: "Luckiest Guy", cursive; letter-spacing: 1px;
  font-size: .9rem; color: var(--white); text-decoration: none;
  padding: 8px 12px; border: 3px solid transparent; border-radius: 10px;
  transition: .12s;
}
.topnav a:hover { background: var(--gold); color: var(--ink); border-color: var(--ink); transform: translateY(-2px); }
.topsocials { display: flex; gap: 8px; }
.ico {
  width: 44px; height: 44px; display: grid; place-items: center;
  font-size: 1.2rem; text-decoration: none; color: var(--ink);
  background: var(--gold); border: 3px solid var(--ink); border-radius: 10px;
  box-shadow: var(--pop-sm); transition: .12s;
}
.ico:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

/* ---------- Horizontal track ---------- */
.track {
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0; z-index: 1;
  display: flex; flex-wrap: nowrap;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.track::-webkit-scrollbar { display: none; }

.panel {
  flex: 0 0 100vw; width: 100vw; height: 100%;
  scroll-snap-align: start; scroll-snap-stop: always;
  padding: 36px clamp(24px, 6vw, 110px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}

/* ---------- Shared comic bits ---------- */
.section-head {
  font-family: "Bangers", cursive; letter-spacing: 2px;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: .95;
  margin-bottom: 18px;
}
.section-head span {
  display: inline-block; padding: 4px 22px;
  background: var(--red); color: var(--white);
  border: var(--line); border-radius: 14px; box-shadow: var(--pop);
  transform: rotate(-2deg);
  text-shadow: 3px 3px 0 rgba(0,0,0,.35);
}
.section-head.center { text-align: center; }
.section-head.center span { transform: rotate(-1deg); }

.btn {
  font-family: "Luckiest Guy", cursive; letter-spacing: 1px;
  font-size: 1.05rem; text-decoration: none; color: var(--white);
  padding: 14px 26px; border: var(--line); border-radius: 14px;
  box-shadow: var(--pop); display: inline-block; transition: .12s;
  white-space: nowrap;
}
.btn:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: var(--pop-sm); }
.btn.big { font-size: 1.3rem; padding: 18px 40px; margin: 24px auto 0; }
.btn-red  { background: var(--red-2); }
.btn-blue { background: var(--navy-2); }
.btn-x    { background: var(--ink); }
.btn-tg   { background: #229ed9; }

/* ====================== HERO ====================== */
.panel-hero { padding-top: 20px; padding-bottom: 66px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px;
  align-items: center; height: 100%;
}
.badge-pop {
  display: inline-block; font-family: "Luckiest Guy", cursive; letter-spacing: 1px;
  background: var(--gold); color: var(--ink); padding: 7px 16px;
  border: 4px solid var(--ink); border-radius: 30px; box-shadow: var(--pop-sm);
  transform: rotate(-2deg); margin-bottom: 12px; font-size: .85rem;
}
.title-stack { font-family: "Bangers", cursive; line-height: .82; }
.t-top { display: block; font-size: clamp(2rem, 5vw, 4rem); color: var(--white); text-shadow: 3px 3px 0 var(--navy-2); letter-spacing: 2px; }
.t-big {
  display: block; font-size: clamp(4rem, 12vw, 9rem); letter-spacing: 3px;
  color: var(--gold);
  text-shadow: 5px 5px 0 var(--ink), -2px -2px 0 var(--red), 9px 9px 0 rgba(0,0,0,.3);
}
.ticker-chip {
  display: inline-block; margin: 10px 0; font-family: "Luckiest Guy", cursive;
  background: var(--white); color: var(--ink); padding: 8px 18px;
  border: var(--line); border-radius: 12px; box-shadow: var(--pop-sm);
  font-size: 1.1rem;
}
.ticker-chip b { color: var(--red); }
.hero-bio {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem); font-weight: 700;
  max-width: 480px; margin-bottom: 18px;
  background: rgba(10,26,63,.7); padding: 12px 16px;
  border: 4px solid var(--ink); border-radius: 14px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-art { position: relative; display: grid; place-items: center; height: 100%; }
.hero-mascot {
  max-height: 84%; max-width: 100%; object-fit: contain;
  filter: drop-shadow(10px 12px 0 rgba(0,0,0,.45));
  animation: floaty 4s ease-in-out infinite;
}
.boom {
  position: absolute; top: 4%; right: 2%; z-index: 5;
  font-family: "Bangers", cursive; font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--ink); background: var(--gold);
  padding: 16px 26px; border: var(--line); box-shadow: var(--pop);
  transform: rotate(8deg);
  clip-path: polygon(0 15%,12% 0,28% 12%,42% 0,58% 12%,72% 0,88% 12%,100% 0,92% 22%,100% 40%,90% 55%,100% 75%,85% 80%,90% 100%,70% 88%,55% 100%,42% 88%,28% 100%,15% 86%,4% 96%,8% 72%,0 55%,8% 38%,0 22%);
}
.scroll-hint {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: "Luckiest Guy", cursive; letter-spacing: 1px; color: var(--gold);
  font-size: 1rem; text-shadow: 2px 2px 0 var(--ink); text-align: center;
}
.scroll-hint span { display: block; font-family: "Comic Neue"; font-size: .8rem; color: var(--white); opacity: .8; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }

/* ====================== ABOUT ====================== */
.about-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 40px; align-items: center; }
.speech {
  position: relative; background: var(--white); color: var(--ink);
  border: var(--line); border-radius: 22px; box-shadow: var(--pop);
  padding: 30px 34px; max-width: 640px;
}
.speech::after {
  content: ""; position: absolute; right: -26px; bottom: 46px;
  border: 26px solid transparent; border-left-color: var(--ink);
}
.speech p { font-size: clamp(1rem, 1.5vw, 1.2rem); margin-bottom: 12px; line-height: 1.5; }
.speech .section-head span { background: var(--navy); }
.stat-row { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.stat {
  flex: 1; min-width: 120px; text-align: center; background: var(--gold);
  border: 4px solid var(--ink); border-radius: 14px; padding: 12px 8px;
  box-shadow: var(--pop-sm);
}
.stat b { display: block; font-family: "Bangers", cursive; font-size: 1.8rem; color: var(--red); }
.stat span { font-weight: 700; font-size: .85rem; color: var(--ink); }
.about-art { position: relative; display: grid; place-items: center; }
.about-img {
  max-width: 100%; max-height: 70vh; border: var(--line); border-radius: 22px;
  box-shadow: var(--pop); object-fit: cover;
}
.tag-burst {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  font-family: "Luckiest Guy", cursive; background: var(--red); color: var(--white);
  padding: 10px 20px; border: 4px solid var(--ink); border-radius: 30px;
  box-shadow: var(--pop-sm); white-space: nowrap; font-size: .95rem;
}

/* ====================== HOW TO BUY ====================== */
.panel-buy { align-items: center; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  width: 100%; max-width: 1200px; margin: 0 auto;
}
.step-card {
  background: var(--navy-2); border: var(--line); border-radius: 18px;
  box-shadow: var(--pop); padding: 26px 20px 22px; position: relative;
  transition: .15s;
}
.step-card:hover { transform: translateY(-8px) rotate(-1deg); }
.step-num {
  position: absolute; top: -22px; left: -14px;
  width: 54px; height: 54px; display: grid; place-items: center;
  font-family: "Bangers", cursive; font-size: 2rem; color: var(--ink);
  background: var(--gold); border: var(--line); border-radius: 50%;
  box-shadow: var(--pop-sm);
}
.step-card h3 { font-family: "Luckiest Guy", cursive; letter-spacing: .5px; margin: 12px 0 8px; color: var(--gold); }
.step-card p { font-weight: 700; line-height: 1.45; }

/* ====================== CHART ====================== */
.panel-chart { align-items: center; }
.chart-frame {
  width: 100%; max-width: 1100px; height: 60vh; margin: 0 auto 22px;
  border: var(--line); border-radius: 18px; box-shadow: var(--pop);
  overflow: hidden; background: #0b1220;
}
.chart-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.panel-chart .btn { display: block; width: max-content; margin: 0 auto; }

/* ====================== JOIN US ====================== */
.panel-join { align-items: center; text-align: center; }
.join-banner {
  width: 100%; max-width: 880px; margin: 0 auto 18px;
  border: var(--line); border-radius: 18px; box-shadow: var(--pop);
  overflow: hidden; transform: rotate(-1deg); background: var(--ink);
}
.join-banner img { width: 100%; display: block; }
.join-sub { font-size: 1.2rem; font-weight: 700; margin-bottom: 18px; }
.join-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.join-foot {
  display: flex; flex-direction: column; gap: 4px;
  font-weight: 700; opacity: .8; font-size: .9rem;
}
.join-foot span:first-child { font-family: "Bangers", cursive; font-size: 1.3rem; opacity: 1; letter-spacing: 1px; }

/* ---------- Arrows + dots ---------- */
.nav-arrow {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 45;
  width: 60px; height: 60px; font-size: 2.4rem; line-height: 1; cursor: pointer;
  font-family: "Bangers", cursive; color: var(--ink);
  background: var(--gold); border: var(--line); border-radius: 50%;
  box-shadow: var(--pop-sm); transition: .12s;
}
.nav-arrow:hover { transform: translateY(-50%) scale(1.08); }
.nav-prev { left: 18px; }
.nav-next { right: 18px; }
.dots {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 45;
  display: flex; gap: 10px;
}
.dot {
  width: 16px; height: 16px; border-radius: 50%; cursor: pointer;
  background: var(--white); border: 3px solid var(--ink); box-shadow: var(--pop-sm);
  transition: .15s;
}
.dot.active { background: var(--red); transform: scale(1.3); }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 920px) {
  .topnav { display: none; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero-art { order: -1; }
  .hero-mascot { max-height: 38vh; }
  .speech::after { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .chart-frame { height: 50vh; }
}
@media (max-width: 560px) {
  .panel { padding: 28px 20px; }
  .brand-text { display: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .nav-arrow { width: 48px; height: 48px; font-size: 1.8rem; }
  .t-big { font-size: 22vw; }
}
