:root {
  --navy: #071d49;
  --blue: #0b4da2;
  --sky: #36a6ff;
  --red: #d81732;
  --cream: #fff8e8;
  --white: #ffffff;
  --gold: #ffc544;
  --ink: #07101f;
  --muted: #5d6c86;
  --panel: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 70px rgba(5, 16, 38, 0.22);
  --comic-font: "Comic Sans MS", "Comic Sans", "Trebuchet MS", "Arial Rounded MT Bold", ui-rounded, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--comic-font);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 197, 68, 0.24), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(54, 166, 255, 0.18), transparent 28rem),
    repeating-linear-gradient(115deg, rgba(216, 23, 50, 0.055) 0 12px, rgba(255, 255, 255, 0) 12px 42px),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #edf5ff 100%);
  font-weight: 700;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background:
    radial-gradient(circle, rgba(7, 29, 73, 0.22) 0 2px, transparent 2.5px) 0 0 / 54px 54px,
    radial-gradient(circle, rgba(216, 23, 50, 0.16) 0 1.8px, transparent 2.3px) 27px 22px / 70px 70px;
  animation: starDrift 22s linear infinite;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  width: min(1160px, calc(100% - 28px));
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 14px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 0 rgba(7, 29, 73, 0.14), 0 24px 45px rgba(7, 29, 73, 0.18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  animation: headerDrop 620ms ease-out both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--navy);
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(255, 197, 68, 0.4);
  font-size: 0.92rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #243a62;
  font-size: 0.82rem;
  font-weight: 950;
}

nav a,
.nav-buy {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 15px;
}

nav a:hover {
  background: rgba(7, 29, 73, 0.08);
}

.nav-buy {
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 0.82rem;
  box-shadow: 0 5px 0 #8f1022, 0 12px 22px rgba(216, 23, 50, 0.28);
  animation: buttonPulse 2.8s ease-in-out infinite;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
  align-items: end;
  gap: 34px;
  padding: 132px max(24px, calc((100vw - 1160px) / 2)) 56px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(100deg, rgba(216, 23, 50, 0.24) 0 18px, rgba(255, 255, 255, 0.1) 18px 36px, rgba(7, 29, 73, 0) 36px 96px),
    linear-gradient(90deg, rgba(4, 18, 46, 0.9) 0%, rgba(4, 18, 46, 0.52) 44%, rgba(4, 18, 46, 0.14) 100%),
    url("banner.png") center / cover no-repeat;
  transform: scale(1.015);
  animation: heroPan 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(5, 14, 31, 0.6), transparent);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.52;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.22) 46%, transparent 58%),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.28), transparent 18rem);
  transform: translateX(-36%);
  animation: heroShine 7.5s ease-in-out infinite;
}

.patriot-effects {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  color: var(--white);
  filter: drop-shadow(0 0 12px rgba(54, 166, 255, 0.7));
  opacity: 0.82;
  animation: floatStar 6.2s ease-in-out infinite;
}

.star-a {
  top: 18%;
  left: 8%;
  font-size: 2.6rem;
}

.star-b {
  top: 20%;
  right: 9%;
  color: var(--gold);
  font-size: 2rem;
  animation-delay: -1.8s;
}

.star-c {
  bottom: 25%;
  left: 48%;
  color: #cfe7ff;
  font-size: 1.5rem;
  animation-delay: -3.2s;
}

.burst {
  position: absolute;
  width: 170px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.42;
  background:
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.9) 0 5deg, transparent 5deg 14deg),
    radial-gradient(circle, transparent 0 38%, rgba(216, 23, 50, 0.8) 39% 41%, transparent 42%);
  mask-image: radial-gradient(circle, transparent 0 28%, #000 30% 78%, transparent 80%);
  animation: spinBurst 16s linear infinite;
}

.burst-a {
  top: 10%;
  left: 30%;
}

.burst-b {
  top: 12%;
  right: 7%;
  width: 135px;
  animation-duration: 13s;
  animation-direction: reverse;
}

.ribbon {
  position: absolute;
  width: 44vw;
  height: 18px;
  border-radius: 999px;
  opacity: 0.72;
  background: linear-gradient(90deg, var(--red) 0 30%, var(--white) 30% 60%, var(--blue) 60% 100%);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  transform: rotate(-12deg);
  animation: ribbonWave 8s ease-in-out infinite;
}

.ribbon-a {
  left: -12vw;
  bottom: 18%;
}

.ribbon-b {
  right: -14vw;
  top: 38%;
  transform: rotate(13deg);
  animation-delay: -2.4s;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(7, 29, 73, 0.28);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(3.7rem, 11.4vw, 8.3rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.75);
  text-shadow:
    0 8px 0 rgba(7, 29, 73, 0.42),
    0 20px 44px rgba(0, 0, 0, 0.34);
  animation: titlePop 760ms cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

.symbol {
  margin: 18px 0 8px;
  color: var(--gold);
  font-size: clamp(1.45rem, 3.1vw, 2.45rem);
  font-weight: 950;
  text-shadow: 0 4px 0 rgba(7, 29, 73, 0.52);
  animation: glowBeat 2.6s ease-in-out infinite;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.35;
  font-weight: 900;
  text-shadow: 0 3px 0 rgba(7, 29, 73, 0.38);
}

.ca-copy {
  max-width: min(100%, 540px);
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 3px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background: rgba(7, 29, 73, 0.48);
  backdrop-filter: blur(14px);
  box-shadow:
    0 8px 0 rgba(7, 29, 73, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 40px rgba(0, 0, 0, 0.18);
  animation: titlePop 820ms cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
  animation-delay: 120ms;
}

.ca-copy-panel {
  width: 100%;
  grid-column: 1 / -1;
  max-width: none;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(7, 29, 73, 0.12);
  box-shadow: 0 8px 0 rgba(7, 29, 73, 0.1), 0 18px 34px rgba(7, 29, 73, 0.12);
}

.ca-copy-panel .ca-copy-label {
  color: var(--blue);
}

.ca-copy-panel .ca-copy-address {
  color: var(--navy);
}

.ca-copy-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(7, 29, 73, 0.24);
}

.ca-copy-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ca-copy-address {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Consolas", "SFMono-Regular", "Segoe UI Mono", ui-monospace, monospace;
  font-size: clamp(0.68rem, 1.8vw, 0.86rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.015em;
  user-select: all;
}

.ca-copy-button {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 16px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(7, 29, 73, 0.34);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ca-copy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(7, 29, 73, 0.34);
}

.ca-copy-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(7, 29, 73, 0.34);
}

.ca-copy-button.copied {
  background: #7ef0b0;
  border-color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.token-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 950;
  font-size: 0.82rem;
  text-transform: uppercase;
  box-shadow: 0 6px 0 rgba(7, 29, 73, 0.34), 0 18px 34px rgba(0, 0, 0, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease;
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: skewX(-20deg);
  animation: buttonShine 3.4s ease-in-out infinite;
}

.button:hover,
.nav-buy:hover,
.footer-links a:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--red), #ff5a42);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button.dark {
  background: var(--navy);
  color: var(--white);
}

.button.x-button {
  background: linear-gradient(135deg, #111827, #1d9bf0);
  color: var(--white);
}

.hero-card {
  align-self: end;
  padding: 16px;
  border: 5px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 10px 0 rgba(7, 29, 73, 0.24), var(--shadow);
  transform: rotate(1.2deg);
  animation: cardBob 4.6s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 26px;
}

.hero-card div {
  padding: 16px 4px 2px;
}

.hero-card strong {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-card p {
  margin: 6px 0 0;
  color: #243a62;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.35;
}

.ticker-strip {
  display: flex;
  gap: 12px;
  align-items: center;
  overflow: hidden;
  padding: 18px max(24px, calc((100vw - 1160px) / 2));
  background: var(--navy);
  color: var(--white);
  position: relative;
}

.ticker-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  animation: tickerSweep 5s linear infinite;
}

.ticker-strip span {
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  font-size: 0.78rem;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1;
  animation: tagWiggle 5.4s ease-in-out infinite;
}

.ticker-strip span:nth-child(2n) {
  animation-delay: -1.3s;
}

.ticker-strip span:nth-child(3n) {
  animation-delay: -2.4s;
}

section:not(.hero) {
  padding: 82px max(24px, calc((100vw - 1160px) / 2));
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 48px;
  align-items: start;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: 0;
  text-shadow: 3px 3px 0 rgba(255, 197, 68, 0.28);
}

.intro p:last-child,
.game-copy p,
.token-panel p {
  color: var(--muted);
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.62;
  font-weight: 800;
}

.showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(216, 23, 50, 0.1), transparent 20rem),
    radial-gradient(circle at 88% 18%, rgba(11, 77, 162, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(7, 29, 73, 0.04), rgba(7, 29, 73, 0)),
    repeating-linear-gradient(135deg, rgba(216, 23, 50, 0.07) 0 2px, rgba(255, 255, 255, 0) 2px 22px);
}

.showcase::before {
  content: "★ ★ ★ ★ ★";
  position: absolute;
  top: 34px;
  right: max(18px, calc((100vw - 1160px) / 2));
  color: rgba(216, 23, 50, 0.18);
  font-size: clamp(2rem, 8vw, 7rem);
  letter-spacing: 0.12em;
  transform: rotate(-6deg);
  animation: starSlide 9s ease-in-out infinite alternate;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.character-card {
  min-width: 0;
  overflow: hidden;
  border: 4px solid var(--white);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 8px 0 rgba(7, 29, 73, 0.12), 0 24px 55px rgba(7, 29, 73, 0.12);
  transition: transform 180ms ease;
  animation: floatCard 5.6s ease-in-out infinite;
}

.character-card:hover {
  transform: translateY(-5px) rotate(-1deg);
}

.character-card:nth-child(2) {
  animation-delay: -1.2s;
}

.character-card:nth-child(3) {
  animation-delay: -2.1s;
}

.character-card:nth-child(4) {
  animation-delay: -3s;
}

.character-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.character-card div {
  padding: 18px;
}

.character-card h3,
.roadmap h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.16;
  text-shadow: 2px 2px 0 rgba(255, 197, 68, 0.24);
}

.character-card p,
.roadmap p,
footer p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 800;
  font-size: 0.86rem;
}

.gameplay {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
}

.gameplay img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 36px;
  box-shadow: 0 9px 0 rgba(7, 29, 73, 0.18), var(--shadow);
  transform: rotate(1deg);
  animation: posterFloat 6.4s ease-in-out infinite;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  padding: 10px 13px;
  border-radius: 999px;
  background: #eaf3ff;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.78rem;
  box-shadow: inset 0 -3px 0 rgba(7, 29, 73, 0.1);
}

.token-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 26px;
  margin: 0 max(24px, calc((100vw - 1160px) / 2));
  padding: 48px;
  border: 5px solid var(--white);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 232, 0.92)),
    linear-gradient(90deg, var(--red), var(--blue));
  box-shadow: 0 10px 0 rgba(7, 29, 73, 0.13), var(--shadow);
}

.token-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 120px;
  background: linear-gradient(90deg, transparent, rgba(216, 23, 50, 0.16), rgba(255, 255, 255, 0.62), rgba(11, 77, 162, 0.16), transparent);
  transform: rotate(-7deg);
  animation: panelShine 6s ease-in-out infinite;
}

.token-panel > * {
  position: relative;
  z-index: 1;
}

.token-panel p {
  max-width: 720px;
  margin: 18px 0 0;
}

.token-panel .token-actions {
  align-self: start;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.roadmap article {
  padding: 26px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 7px 0 rgba(7, 29, 73, 0.1), 0 18px 45px rgba(7, 29, 73, 0.1);
  transition: transform 180ms ease;
}

.roadmap article:hover {
  transform: translateY(-4px) rotate(0.8deg);
}

.roadmap span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 950;
  font-size: 0.84rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(24px, calc((100vw - 1160px) / 2));
  background: #06152f;
  color: var(--white);
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.08), transparent 16rem),
    repeating-linear-gradient(90deg, rgba(216, 23, 50, 0.1) 0 18px, transparent 18px 58px);
}

footer strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  text-transform: uppercase;
}

footer p {
  color: rgba(255, 255, 255, 0.64);
}

.footer-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 900;
  font-size: 0.82rem;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.18);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  nav {
    display: none;
  }

  .hero,
  .section-grid,
  .gameplay,
  .token-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-card {
    max-width: 360px;
  }

  h1 {
    font-size: clamp(3.6rem, 13vw, 6.9rem);
  }

  h2 {
    font-size: clamp(1.8rem, 6vw, 3.1rem);
  }

  .character-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .token-panel {
    margin-right: 24px;
    margin-left: 24px;
    padding: 34px 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 56px;
    gap: 8px;
    padding: 8px;
  }

  .brand span {
    max-width: 126px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-buy,
  .button {
    min-height: 46px;
    padding-inline: 15px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 3.85rem);
    line-height: 0.95;
    -webkit-text-stroke-width: 1px;
    text-shadow:
      0 4px 0 rgba(7, 29, 73, 0.42),
      0 14px 30px rgba(0, 0, 0, 0.28);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .symbol {
    font-size: 1.36rem;
  }

  .hero-copy {
    font-size: 0.92rem;
  }

  .ca-copy-row {
    flex-direction: column;
    align-items: stretch;
  }

  .ca-copy-button {
    width: 100%;
  }

  .intro p:last-child,
  .game-copy p,
  .token-panel p {
    font-size: 0.86rem;
    line-height: 1.56;
  }

  .character-card p,
  .roadmap p,
  footer p {
    font-size: 0.78rem;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-bg {
    background:
      repeating-linear-gradient(110deg, rgba(216, 23, 50, 0.18) 0 14px, rgba(255, 255, 255, 0.08) 14px 28px, rgba(7, 29, 73, 0) 28px 82px),
      linear-gradient(180deg, rgba(4, 18, 46, 0.78) 0%, rgba(4, 18, 46, 0.6) 62%, rgba(4, 18, 46, 0.82) 100%),
      url("banner.png") center / cover no-repeat;
  }

  .burst,
  .ribbon-b,
  .star-c {
    display: none;
  }

  .ribbon-a {
    width: 82vw;
    bottom: 10%;
  }

  .hero-actions,
  .token-actions,
  footer,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .footer-links a {
    width: 100%;
  }

  section:not(.hero) {
    padding: 60px 18px;
  }

  .character-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .gameplay img {
    min-height: 250px;
    border-width: 6px;
    border-radius: 24px;
  }

  .token-panel {
    margin-right: 18px;
    margin-left: 18px;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes heroPan {
  from {
    transform: scale(1.015) translateX(-0.6%);
  }
  to {
    transform: scale(1.05) translateX(0.8%);
  }
}

@keyframes heroShine {
  0%,
  42% {
    transform: translateX(-50%);
    opacity: 0;
  }
  55% {
    opacity: 0.52;
  }
  100% {
    transform: translateX(50%);
    opacity: 0;
  }
}

@keyframes floatStar {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-18px) rotate(12deg) scale(1.08);
  }
}

@keyframes spinBurst {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ribbonWave {
  0%,
  100% {
    translate: 0 0;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  }
  50% {
    translate: 22px -12px;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.26));
  }
}

@keyframes titlePop {
  from {
    opacity: 0;
    transform: scale(0.88) rotate(-1.5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes glowBeat {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 197, 68, 0));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(255, 197, 68, 0.65));
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.14);
  }
}

@keyframes buttonShine {
  0%,
  55% {
    left: -70%;
  }
  100% {
    left: 130%;
  }
}

@keyframes cardBob {
  0%,
  100% {
    transform: rotate(1.2deg) translateY(0);
  }
  50% {
    transform: rotate(-0.6deg) translateY(-10px);
  }
}

@keyframes tickerSweep {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes tagWiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-1.4deg) translateY(-2px);
  }
}

@keyframes starSlide {
  from {
    transform: translateX(0) rotate(-6deg);
  }
  to {
    transform: translateX(-30px) rotate(-2deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes posterFloat {
  0%,
  100% {
    transform: rotate(1deg) translateY(0);
  }
  50% {
    transform: rotate(-0.4deg) translateY(-8px);
  }
}

@keyframes panelShine {
  0%,
  45% {
    transform: translateX(-28%) rotate(-7deg);
  }
  100% {
    transform: translateX(45%) rotate(-7deg);
  }
}

@keyframes starDrift {
  from {
    background-position: 0 0, 27px 22px;
  }
  to {
    background-position: 54px 54px, 97px 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
