:root {
  --bg-body: #0b1020;
  --bg-card: #12182a;
  --bg-elevated: #161f34;
  --text-main: #f8fafc;
  --text-muted: #aeb9cc;
  --text-sub: #d7deea;
  --primary: #f0522d;
  --primary-hover: #ff7048;
  --gold: #f7c948;
  --cyan: #38d5c8;
  --line: rgba(248, 250, 252, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

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

html {
  height: 100%;
  background: var(--bg-body);
  overflow: hidden;
}

body {
  min-width: 320px;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(900px 440px at 0% -10%, rgba(56, 213, 200, 0.14), transparent 66%),
    radial-gradient(760px 420px at 100% 0%, rgba(240, 82, 45, 0.14), transparent 68%),
    linear-gradient(180deg, var(--bg-body), #0d1324);
  color: var(--text-main);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.launch-page {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}

.launch-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
  pointer-events: none;
}

.media-stage {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.95fr;
  min-height: 100%;
  transform: scale(1.025);
}

.media-shot {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  filter: saturate(1.18) contrast(1.05);
}

.media-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 28, 0.05), rgba(8, 13, 28, 0.76)),
    linear-gradient(90deg, rgba(8, 13, 28, 0.38), transparent 44%, rgba(8, 13, 28, 0.42));
}

.media-shot.pokemon {
  background-image: url("assets/coming-soon/pokemon-launch.jpg");
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.media-shot.onepiece {
  background-image: url("assets/coming-soon/onepiece-launch.jpg");
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.media-shot.dragonball {
  background-image: url("assets/coming-soon/dragonball-launch.jpg");
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 12%, rgba(56, 213, 200, 0.34), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(240, 82, 45, 0.32), transparent 30%),
    linear-gradient(90deg, rgba(8, 13, 28, 0.9) 0%, rgba(8, 13, 28, 0.72) 48%, rgba(8, 13, 28, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 13, 28, 0.2), #080d1c 100%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(14px, 3svh, 26px) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.18rem, 2.5svh, 1.62rem);
  font-weight: 800;
}

.brand img {
  width: clamp(42px, 6svh, 56px);
  height: clamp(42px, 6svh, 56px);
  border: 1px solid rgba(248, 250, 252, 0.2);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid rgba(56, 213, 200, 0.34);
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.58);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(18px, 4svh, 40px) 0 clamp(16px, 3.4svh, 34px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(0.78rem, 1.8svh, 0.94rem);
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--primary));
}

h1 {
  max-width: 860px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(5rem, 17svh, 10.2rem);
  font-weight: 800;
  line-height: 0.82;
  color: var(--text-main);
  text-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
}

.launch-title {
  display: block;
  margin-top: clamp(8px, 1.8svh, 14px);
  color: var(--primary-hover);
  font-size: clamp(1.55rem, 5.4svh, 3.1rem);
  line-height: 1;
}

.lead {
  max-width: 660px;
  margin-top: clamp(15px, 2.6svh, 24px);
  color: var(--text-sub);
  font-size: clamp(0.98rem, 2.35svh, 1.18rem);
  font-weight: 500;
  line-height: 1.55;
}

.lead strong {
  color: var(--gold);
  font-weight: 800;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(18px, 3.4svh, 30px);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(248, 250, 252, 0.16);
  border-radius: 8px;
  background: rgba(18, 24, 42, 0.62);
  color: var(--text-main);
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.social-link.primary {
  border-color: rgba(240, 82, 45, 0.7);
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
}

.social-link.telegram {
  border-color: rgba(125, 211, 252, 0.78);
  background: linear-gradient(135deg, #7dd3fc, #0ea5e9);
  color: #071525;
}

.social-link.tiktok {
  border-color: rgba(192, 132, 252, 0.78);
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  color: #fff;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(56, 213, 200, 0.7);
  background: rgba(22, 31, 52, 0.86);
  transform: translateY(-2px);
  outline: none;
}

.social-link.primary:hover,
.social-link.primary:focus-visible {
  border-color: rgba(247, 201, 72, 0.76);
  background: linear-gradient(135deg, #ff7048, #f0522d);
}

.social-link.telegram:hover,
.social-link.telegram:focus-visible {
  border-color: rgba(186, 230, 253, 0.9);
  background: linear-gradient(135deg, #bae6fd, #38bdf8);
}

.social-link.tiktok:hover,
.social-link.tiktok:focus-visible {
  border-color: rgba(216, 180, 254, 0.92);
  background: linear-gradient(135deg, #6d28d9, #a855f7);
}

.drop-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(10px, 1.8svh, 20px);
}

.drop-item {
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: clamp(8px, 1.4svh, 14px);
}

.drop-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.drop-item strong {
  display: block;
  margin-top: 6px;
  color: var(--text-main);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.18rem, 3.2svh, 1.8rem);
  line-height: 1.05;
}

.ticker {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
  border-bottom: 1px solid rgba(248, 250, 252, 0.12);
  background: rgba(8, 13, 28, 0.7);
  backdrop-filter: blur(14px);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: slideText 26s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 0 0 auto;
  width: max-content;
  min-width: 100vw;
}

.ticker-group span {
  display: inline-flex;
  align-items: center;
  min-height: clamp(34px, 5.5svh, 44px);
  padding-inline: 22px;
  color: var(--text-sub);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-group span:nth-child(3n + 1) {
  color: var(--gold);
}

.ticker-group span:nth-child(3n + 2) {
  color: var(--cyan);
}

.footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(10px, 1.8svh, 16px) 0 clamp(12px, 2svh, 18px);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer a {
  color: var(--text-sub);
  font-weight: 700;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--cyan);
  outline: none;
}

@keyframes slideText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  html,
  body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .launch-page {
    display: block;
    height: auto;
    min-height: 100svh;
  }

  .media-stage {
    display: block;
    transform: none;
  }

  .media-shot {
    position: absolute;
    inset: 0;
    opacity: 0.58;
    clip-path: none !important;
  }

  .media-shot.pokemon {
    background-position: 58% center;
  }

  .media-shot.onepiece,
  .media-shot.dragonball {
    display: none;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 18% 0%, rgba(56, 213, 200, 0.28), transparent 36%),
      linear-gradient(180deg, rgba(8, 13, 28, 0.62), #080d1c 82%);
  }

  .topbar {
    width: min(100% - 28px, 1180px);
    padding-top: 16px;
  }

  .brand span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .status-pill {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .hero-copy {
    width: min(100% - 28px, 1180px);
    margin-top: clamp(38px, 8svh, 72px);
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(4rem, 10svh, 5.3rem);
  }

  .lead {
    max-width: 100%;
  }

  .action-row {
    width: 100%;
  }

  .social-link {
    flex: 1 1 144px;
    min-width: 0;
    padding-inline: 14px;
    text-align: center;
  }

  .drop-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100% - 28px, 1180px);
  }

  .drop-item {
    padding-top: 12px;
  }

  .footer {
    width: min(100% - 28px, 1180px);
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .topbar {
    align-items: flex-start;
  }

  .brand {
    gap: 9px;
  }

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

  .status-pill {
    max-width: 112px;
    text-align: center;
    white-space: normal;
  }

  .eyebrow::before {
    width: 28px;
  }

  .ticker-track span {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 0.76rem;
  }
}

@media (min-width: 861px) and (max-height: 640px) {
  .lead {
    max-width: 620px;
  }

  .social-link {
    min-height: 42px;
    padding: 10px 16px;
  }

  .drop-strip {
    gap: 14px;
  }

  .footer {
    font-size: 0.78rem;
  }
}

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