:root {
  --bg: #0d0b1f;
  --bg-2: #151229;
  --pink: #ffc4dc;
  --hot-pink: #ff5fb8;
  --violet: #7f38ff;
  --cyan: #7be7ff;
  --sunset: #ffb36b;
  --white: #fffaf8;
  --muted: rgba(255, 250, 248, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 34px 120px rgba(3, 2, 15, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--white);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(150, 55, 255, 0.3), transparent 24rem),
    radial-gradient(circle at 78% 18%, rgba(255, 100, 182, 0.22), transparent 26rem),
    radial-gradient(circle at 50% 100%, rgba(23, 102, 255, 0.24), transparent 35rem),
    linear-gradient(140deg, #090817, #111027 42%, #0b0a18);
  font-family: "Arial Black", Impact, Haettenschweiler, system-ui, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.035) 50%, transparent 52%),
    radial-gradient(circle at center, transparent 0 55%, rgba(255, 196, 220, 0.06) 56%, transparent 57%);
  background-size: 130px 130px, 42vw 42vw;
  opacity: 0.75;
}

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

button {
  font: inherit;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(28px, 4vw, 72px);
  pointer-events: none;
}

.vi-mark,
.menu-button {
  pointer-events: auto;
}

.vi-mark {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 1000;
  letter-spacing: -0.08em;
  text-shadow: 0 0 28px rgba(255, 196, 220, 0.36);
}

.menu-button {
  display: grid;
  width: 58px;
  gap: 8px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 7px;
  background: var(--white);
  box-shadow: 0 0 20px rgba(255, 196, 220, 0.3);
}

main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: clamp(22px, 4vh, 48px);
  padding: 112px 0 58px;
}

.poster {
  position: relative;
  display: grid;
  grid-template-columns: 0.68fr 1.1fr 1.1fr 0.74fr;
  grid-template-rows: repeat(3, minmax(140px, 1fr));
  gap: 10px;
  width: min(100%, 980px);
  min-height: clamp(430px, 64vh, 720px);
  margin: 0 auto;
  border: 12px solid rgba(45, 0, 79, 0.88);
  background: #25003a;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(255, 95, 184, 0.16);
}

.tile {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 196, 220, 0.24), rgba(123, 231, 255, 0.22)),
    #19112c;
}

.tile::before,
.tile::after {
  position: absolute;
  content: "";
}

.tile::before {
  inset: 0;
  background-image:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.26) 45% 48%, transparent 49%),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.38), transparent 18%),
    radial-gradient(circle at 70% 68%, rgba(255, 95, 184, 0.36), transparent 24%);
  mix-blend-mode: screen;
}

.tile::after {
  width: 44%;
  aspect-ratio: 1;
  right: 8%;
  bottom: 7%;
  border-radius: 42% 58% 45% 55%;
  background: rgba(9, 8, 23, 0.52);
  box-shadow: -36px -42px 0 rgba(255, 179, 107, 0.3);
}

.tile-one { grid-row: span 1; background-color: #67c8ee; }
.tile-two { grid-row: span 2; background-color: #fa8ec8; }
.tile-three { background-color: #7ee4f5; }
.tile-four { grid-row: span 1; background-color: #d86fb9; }
.tile-five { grid-row: span 2; background-color: #ee8cba; }
.tile-six { background-color: #62d2ee; }
.tile-seven { grid-row: span 2; background-color: #f2a661; }
.tile-eight { grid-row: span 2; background-color: #8e66f5; }

.poster-logo {
  position: absolute;
  left: 50%;
  top: 54%;
  display: grid;
  width: min(38vw, 330px);
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(46px, 6.4vw, 82px);
  font-weight: 1000;
  line-height: 0.68;
  letter-spacing: -0.035em;
  text-align: center;
  text-transform: lowercase;
  filter: drop-shadow(0 0 18px rgba(255, 95, 184, 0.52));
  text-shadow:
    -3px -3px 0 #1a0435,
    3px -3px 0 #1a0435,
    -3px 3px 0 #1a0435,
    3px 3px 0 #1a0435,
    0 5px 0 #1a0435,
    0 0 24px rgba(255, 95, 184, 0.7);
}

.poster-logo strong {
  position: absolute;
  inset: -28% -24%;
  z-index: -1;
  display: grid;
  place-items: center;
  color: transparent;
  -webkit-text-stroke: 7px #371061;
  font-size: 2.25em;
  letter-spacing: -0.2em;
  background: linear-gradient(160deg, #7e44ff, #ff5fb8 48%, #ffd066);
  background-clip: text;
  -webkit-background-clip: text;
  opacity: 0.96;
}

.release-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  width: min(100%, 980px);
  margin: 0 auto;
  align-items: center;
}

.coming {
  margin: 0 0 4px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.02;
  text-transform: uppercase;
}

.platforms {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 2vw, 30px);
  text-align: right;
  text-transform: uppercase;
}

.glow-button {
  display: inline-flex;
  min-height: 68px;
  min-width: 250px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pink);
  color: #5a3153;
  font-family: system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  box-shadow:
    0 0 38px rgba(255, 196, 220, 0.48),
    inset 0 -10px 24px rgba(255, 95, 184, 0.08);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 28px;
  height: 28px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 6px solid var(--pink);
  border-bottom: 6px solid var(--pink);
  filter: drop-shadow(0 0 12px rgba(255, 196, 220, 0.9));
  animation: pulse-down 1.6s infinite ease-in-out;
}

@keyframes pulse-down {
  0%, 100% { translate: 0 0; opacity: 0.65; }
  50% { translate: 0 10px; opacity: 1; }
}

.countdown-section,
.comparison-section {
  padding: clamp(70px, 12vw, 140px) 0;
}

.eyebrow {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 196, 220, 0.42);
  border-radius: 999px;
  background: rgba(255, 196, 220, 0.08);
  color: var(--pink);
  padding: 0 18px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  max-width: 980px;
  margin: 20px 0 36px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.timer-grid,
.comparison-grid {
  display: grid;
  gap: 16px;
}

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

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

.timer-grid article,
.comparison-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 95, 184, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  padding: 24px;
}

.timer-grid article {
  min-height: 180px;
}

.comparison-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  min-height: 128px;
  align-items: center;
  gap: 26px;
  padding: 24px 30px;
}

.timer-grid article::after,
.comparison-card::after {
  position: absolute;
  inset: auto -18% -34% 20%;
  height: 80%;
  content: "";
  transform: rotate(-10deg);
  background: linear-gradient(90deg, transparent, rgba(255, 196, 220, 0.11), transparent);
}

.timer-grid strong,
.comparison-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow: 0 0 32px rgba(255, 95, 184, 0.24);
}

.comparison-card strong {
  width: 100%;
  font-size: clamp(40px, 7.2vw, 96px);
  line-height: 0.92;
  text-align: right;
  white-space: nowrap;
}

.decimal-part {
  color: rgba(255, 250, 248, 0.5);
  font-size: 0.62em;
  letter-spacing: -0.04em;
}

.timer-grid span,
.comparison-copy span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.timer-grid span {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.comparison-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.comparison-copy small {
  position: relative;
  z-index: 1;
  color: rgba(255, 196, 220, 0.84);
  font-family: system-ui, sans-serif;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0;
}

@media (max-width: 960px) {
  .topbar {
    min-height: 84px;
    padding: 0 22px;
  }

  .poster {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 128px);
    min-height: auto;
    border-width: 8px;
  }

  .poster-logo {
    width: min(82vw, 360px);
  }

  .release-row,
  .timer-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    grid-template-columns: 1fr;
  }

  .comparison-card strong {
    text-align: left;
    font-size: clamp(34px, 13vw, 72px);
  }

  .platforms {
    text-align: left;
  }

  .glow-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 22px, 1240px);
  }

  .poster {
    grid-template-rows: repeat(4, 94px);
    gap: 6px;
  }

  .poster-logo {
    width: min(72vw, 260px);
    font-size: 42px;
  }

  .timer-grid article,
  .comparison-card {
    min-height: 150px;
  }
}
