:root {
  --bg: #070b12;
  --navy: #0c1a33;
  --panel: rgba(10, 22, 44, 0.88);
  --gold: #f0c14b;
  --gold-hot: #ffd76a;
  --cream: #f5f0e6;
  --muted: #a8b4c8;
  --red: #e63946;
  --blue: #3d8bfd;
  --cyan: #5ce1e6;
  --card: #101c30;
  --border: rgba(240, 193, 75, 0.32);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-type: "Special Elite", "Courier New", monospace;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--cream);
  background:
    radial-gradient(1000px 500px at 15% -10%, rgba(61, 139, 253, 0.18), transparent 55%),
    radial-gradient(800px 400px at 90% 10%, rgba(240, 193, 75, 0.12), transparent 50%),
    linear-gradient(180deg, #050810 0%, var(--bg) 40%, #04060c 100%);
  overflow-x: hidden;
}

.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.35) 3px
  );
}

.meow-float {
  pointer-events: none;
  position: fixed;
  top: 18%;
  right: -2rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: 0.08em;
  color: rgba(240, 193, 75, 0.07);
  transform: rotate(18deg);
  user-select: none;
}

.top,
main,
footer {
  position: relative;
  z-index: 2;
}

.top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  padding: 1rem 1rem 0;
}

.badge-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.45);
  color: var(--muted);
}

.badge-pill.gold {
  color: #1a1405;
  background: linear-gradient(135deg, var(--gold-hot), var(--gold));
  border-color: transparent;
}

/* HERO */
.hero {
  position: relative;
  min-height: min(94vh, 960px);
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) brightness(0.45);
  transform: scale(1.04);
  animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.4) 0%, rgba(4, 8, 16, 0.78) 55%, rgba(4, 8, 16, 0.96) 100%),
    radial-gradient(circle at 50% 25%, transparent, rgba(0, 0, 0, 0.5) 80%);
}

.hero-inner {
  position: relative;
  width: min(900px, 100%);
  text-align: center;
}

.crest {
  width: min(120px, 28vw);
  height: min(120px, 28vw);
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.4), 0 0 40px rgba(240, 193, 75, 0.35);
  margin-bottom: 0.85rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-transform: uppercase;
}

.eyebrow.pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

h1 {
  margin: 0;
  line-height: 0.92;
}

h1 .line-sm {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  letter-spacing: 0.1em;
  color: var(--blue);
  text-shadow: 0 0 28px rgba(61, 139, 253, 0.4);
}

h1 .line-lg {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 12vw, 6.8rem);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff 0%, var(--gold-hot) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.4));
}

.tagline {
  margin: 1rem auto 1.6rem;
  max-width: 36rem;
  font-size: clamp(1.02rem, 2.3vw, 1.2rem);
  color: var(--muted);
  line-height: 1.5;
}

.tagline strong {
  color: var(--gold-hot);
}

/* COUNTDOWN */
.countdown-card {
  margin: 0 auto;
  padding: 1.35rem 1.2rem 1.15rem;
  width: min(680px, 100%);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 32, 58, 0.95), rgba(8, 14, 26, 0.96));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(240, 193, 75, 0.15);
  backdrop-filter: blur(10px);
}

.countdown-card.live {
  border-color: rgba(92, 225, 230, 0.55);
  box-shadow: 0 0 0 1px rgba(92, 225, 230, 0.25), 0 0 40px rgba(92, 225, 230, 0.15), var(--shadow);
}

.countdown-card.urgent .num {
  color: #ff6b6b;
  text-shadow: 0 0 24px rgba(230, 57, 70, 0.55);
  animation: tickFlash 1s steps(1) infinite;
}

@keyframes tickFlash {
  50% { opacity: 0.75; }
}

.countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.countdown-label .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.3rem, 2vw, 0.85rem);
}

.unit {
  min-width: clamp(3.2rem, 14vw, 5.5rem);
}

.num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 11vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.45), 0 0 28px rgba(61, 139, 253, 0.25);
  font-variant-numeric: tabular-nums;
}

.lbl {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.sep {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 4rem);
  color: var(--gold);
  margin-bottom: 1.1rem;
  opacity: 0.85;
  animation: colon 1s steps(1) infinite;
}

@keyframes colon {
  50% { opacity: 0.25; }
}

.target-line {
  margin: 1rem 0 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.status {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gold-hot);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.4rem;
}

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #120e05;
  background: linear-gradient(135deg, var(--gold-hot), var(--gold));
  box-shadow: 0 10px 28px rgba(240, 193, 75, 0.35);
}

.btn.ghost {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.meow-log {
  min-height: 1.4rem;
  margin: 0.75rem 0 0;
  font-family: var(--font-type);
  font-size: 1.05rem;
  color: var(--cyan);
}

/* FEATURES */
.features,
.timeline,
.gallery,
.quotes,
.rules {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto 3.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: 0.08em;
  margin: 0 0 1.25rem;
  text-align: center;
  color: var(--cream);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.feature {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 193, 75, 0.55);
}

.feat-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.feat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.65));
}

.feat-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
}

.chip.indoor {
  background: rgba(61, 139, 253, 0.18);
  color: #9ec5ff;
  border: 1px solid rgba(61, 139, 253, 0.4);
}

.chip.outdoor {
  background: rgba(92, 225, 230, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(92, 225, 230, 0.35);
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.2rem;
  color: var(--gold-hot);
}

.aka {
  margin: 0 0 0.75rem;
  font-family: var(--font-type);
  font-size: 0.92rem;
  color: var(--muted);
}

.feature ul {
  margin: 0 0 0.9rem;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
}

.feature .quote {
  margin: 0;
  font-family: var(--font-type);
  font-size: 0.98rem;
  color: var(--cream);
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}

/* TIMELINE */
.timeline {
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(16, 32, 58, 0.75), rgba(7, 11, 18, 0.92));
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: start;
}

.steps li:last-child {
  border-bottom: none;
}

.steps .t {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.steps .d {
  color: var(--muted);
  line-height: 1.45;
}

.steps .d strong {
  color: var(--cream);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figcaption {
  padding: 0.7rem 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(8, 14, 26, 0.95);
}

/* TOP 10 */
.top10 {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto 3.25rem;
}

.top10-lead {
  text-align: center;
  color: var(--muted);
  margin: -0.5rem 0 1.25rem;
  font-size: 0.98rem;
}

.top10-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(16, 32, 58, 0.85), rgba(7, 11, 18, 0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.top10-list li {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top10-list li:last-child {
  border-bottom: none;
}

.top10-list li:nth-child(odd) {
  background: rgba(240, 193, 75, 0.04);
}

.top10-list .n {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1.2;
}

.top10-list .t {
  font-family: var(--font-type);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--cream);
}

/* QUOTES */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.qcard {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
}

.qcard .tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(240, 193, 75, 0.12);
  color: var(--gold);
  border: 1px solid var(--border);
}

.qcard blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--cream);
  flex: 1;
  font-family: var(--font-type);
}

.shuffle {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--cyan);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
}

.shuffle:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* RULES */
.rules {
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(16, 32, 58, 0.75), rgba(7, 11, 18, 0.92));
}

.rules ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.rules li {
  margin-bottom: 0.5rem;
}

.rules strong {
  color: var(--gold);
}

/* FINAL */
.final-strip {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(120deg, rgba(61, 139, 253, 0.15), rgba(240, 193, 75, 0.1)),
    var(--card);
  border: 1px solid var(--border);
}

.final-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.2rem 0;
  letter-spacing: 0.04em;
}

.final-strip p {
  margin: 0.15rem 0;
  color: var(--muted);
}

.final-strip .sub {
  font-size: 0.92rem;
}

.mini-clock {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  letter-spacing: 0.06em;
  color: var(--gold-hot);
  text-shadow: 0 0 24px rgba(240, 193, 75, 0.4);
  font-variant-numeric: tabular-nums;
}

footer {
  text-align: center;
  padding: 0 1rem 2.5rem;
  color: #6d7a90;
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ARRIVED */
.arrived {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.4s ease;
  cursor: pointer;
}

.arrived[hidden] {
  display: none;
}

.arrived-inner {
  text-align: center;
  padding: 2rem;
  max-width: 28rem;
  border-radius: 20px;
  border: 2px solid var(--cyan);
  background: #0c1424;
  box-shadow: 0 0 60px rgba(92, 225, 230, 0.22);
}

.arrived h2 {
  font-family: var(--font-display);
  font-size: 3.4rem;
  margin: 0.3rem 0;
  color: var(--cyan);
}

.arrived .big {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-top: 1rem;
}

.arrived .hint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* MEOW BURST */
.meow-burst {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 10rem);
  letter-spacing: 0.08em;
  color: var(--gold-hot);
  text-shadow: 0 0 40px rgba(240, 193, 75, 0.7), 0 6px 0 #000;
  opacity: 0;
  transform: scale(0.6);
}

.meow-burst.pop {
  animation: meowPop 0.85s ease-out forwards;
}

@keyframes meowPop {
  0% { opacity: 0; transform: scale(0.5) rotate(-8deg); }
  25% { opacity: 1; transform: scale(1.15) rotate(4deg); }
  70% { opacity: 1; transform: scale(1) rotate(0); }
  100% { opacity: 0; transform: scale(1.3) rotate(0); }
}

@media (max-width: 800px) {
  .feature-grid,
  .quote-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .gallery img {
    height: 200px;
  }
}
