/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #0d0d0f;   /* near-black */
  --ink-2:   #131316;   /* dark panel */
  --paper:   #f3f0e7;   /* warm off-white text */
  --muted:   #8d8d97;
  --acid:    #d4ff36;   /* single loud accent */
  --coral:   #ff5b41;   /* used sparingly */
  --line:    #26262c;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { line-height: 1.05; }

.wrap { width: min(1180px, 90%); margin-inline: auto; }

mark { background: var(--acid); color: var(--ink); padding: 0 .12em; }

/* mono labels used everywhere */
.eyebrow, .head__no, .bar__date, .brand__sub, .hero__side-tag,
.kicker, .feed__no, .signup__top, .byline {
  font-family: "JetBrains Mono", monospace;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--ink);
  background: var(--acid);
  padding: .85rem 1.4rem;
  border: 2px solid var(--acid);
  cursor: pointer;
  transition: transform .12s, background .15s, color .15s;
}
.btn:hover { background: transparent; color: var(--acid); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--acid); }
.btn--block { width: 100%; }

.link-arrow { font-weight: 600; border-bottom: 2px solid var(--coral); padding-bottom: 2px; }
.link-arrow:hover { color: var(--coral); }

/* ===== TOPBAR ===== */
.bar { border-bottom: 2px solid var(--paper); position: sticky; top: 0; z-index: 60; background: var(--ink); }
.bar__row { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 1rem; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: "Anton", sans-serif; font-size: 1.7rem; letter-spacing: 1px; }
.brand__name span { color: var(--acid); }
.brand__sub { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.menu { display: flex; gap: 2rem; }
.menu a {
  font-weight: 600; font-size: .98rem; position: relative; padding-bottom: 4px;
}
.menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--acid); transition: width .2s;
}
.menu a:hover::after { width: 100%; }

.bar__right { display: flex; align-items: center; gap: 1rem; }
.bar__date { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
.burger span { width: 26px; height: 2px; background: var(--paper); transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ===== TICKER ===== */
.ticker { background: var(--acid); color: var(--ink); overflow: hidden; border-bottom: 2px solid var(--paper); }
.ticker__track {
  display: flex; align-items: center; gap: 1.2rem; white-space: nowrap;
  padding: .5rem 0; width: max-content;
  animation: slide 28s linear infinite;
}
.ticker__track span { font-family: "JetBrains Mono", monospace; font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; opacity: .7; }
.ticker__track b { font-family: "Anton", sans-serif; font-size: 1rem; letter-spacing: .5px; }
.ticker__track span::before { content: "◆ "; }
@keyframes slide { to { transform: translateX(-50%); } }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* ===== HERO ===== */
.hero { padding: 4.5rem 0 3.5rem; border-bottom: 2px solid var(--line); }
.hero__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: end; }

.eyebrow { font-size: .78rem; color: var(--coral); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.2rem; }
.hero__head {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero__lead { max-width: 46ch; color: var(--muted); font-size: 1.12rem; margin-top: 1.6rem; }
.hero__cta { display: flex; align-items: center; gap: 1.8rem; margin-top: 2rem; flex-wrap: wrap; }

.hero__side { border: 2px solid var(--line); padding: 1.4rem; }
.hero__side-tag { font-size: .72rem; color: var(--acid); letter-spacing: 1px; margin-bottom: 1rem; }
.nowplaying { list-style: none; }
.nowplaying li {
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: .8rem;
  padding: .7rem 0; border-top: 1px solid var(--line);
}
.nowplaying li:first-child { border-top: none; }
.np__rank { font-family: "Anton", sans-serif; font-size: 1.2rem; color: var(--muted); }
.np__name { font-weight: 700; }
.np__meta { font-family: "JetBrains Mono", monospace; font-size: .78rem; color: var(--muted); }

/* ===== SECTION HEAD ===== */
.block { padding: 4.5rem 0; }
.block--dark { background: var(--ink-2); }
.head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2.4rem; }
.head--left { margin-bottom: 1.4rem; }
.head__title { font-family: "Anton", sans-serif; font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; }
.head__line { flex: 1; height: 2px; background: var(--line); }
.head__no { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== KABAR ===== */
.news { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; }

.lead { border: 2px solid var(--line); }
.lead__art {
  height: 280px; position: relative;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(212,255,54,.18), transparent 55%),
    repeating-linear-gradient(135deg, #17171c 0 14px, #121217 14px 28px);
}
.lead__art::after {
  content: attr(data-tag);
  position: absolute; left: 16px; top: 16px;
  font-family: "Anton", sans-serif; font-size: 1rem;
  background: var(--acid); color: var(--ink); padding: .2rem .7rem;
}
.lead__body { padding: 1.6rem 1.8rem 2rem; }
.kicker { font-size: .72rem; color: var(--coral); text-transform: uppercase; letter-spacing: 2px; }
.lead__body h3 { font-size: 1.7rem; margin: .7rem 0 .9rem; }
.lead__body p { color: var(--muted); }
.byline { display: block; font-size: .74rem; color: var(--muted); margin-top: 1rem; letter-spacing: .5px; }

.feed { display: flex; flex-direction: column; }
.feed__item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  padding: 1.1rem 0; border-top: 1px solid var(--line);
}
.feed__item:first-child { border-top: none; padding-top: 0; }
.feed__no {
  font-size: .72rem; font-weight: 600; color: var(--ink);
  background: var(--paper); padding: .15rem .5rem; margin-top: 3px;
}
.feed__item h4 { font-size: 1.12rem; font-weight: 700; transition: color .15s; }
.feed__item:hover h4 { color: var(--acid); }

/* ===== REVIEW ===== */
.rev { display: flex; flex-direction: column; }
.rev__row {
  display: grid; grid-template-columns: 150px 1fr; gap: 2rem; align-items: start;
  padding: 2rem 0; border-top: 2px solid var(--line);
}
.rev__row:first-child { border-top: none; }
.rev__score { text-align: center; }
.rev__score b {
  font-family: "Anton", sans-serif; font-size: 3.4rem; color: var(--acid);
  display: block; line-height: .9;
}
.rev__score span { font-family: "JetBrains Mono", monospace; font-size: .72rem; color: var(--muted); text-transform: uppercase; }
.rev__info h3 { font-size: 1.6rem; }
.rev__genre { font-family: "JetBrains Mono", monospace; font-size: .8rem; color: var(--coral); margin: .3rem 0 .7rem; }
.rev__info > p { color: var(--muted); }
.rev__verdict { margin-top: .7rem; color: var(--paper) !important; font-weight: 600; }
.rev__verdict span { color: var(--acid); }

/* ===== SCHEDULE ===== */
.sched { width: 100%; border-collapse: collapse; }
.sched tr { border-top: 1px solid var(--line); transition: background .15s; }
.sched tr:first-child { border-top: 2px solid var(--line); }
.sched tr:hover { background: var(--ink-2); }
.sched td { padding: 1.1rem .8rem; vertical-align: middle; }
.sched__day { font-family: "JetBrains Mono", monospace; font-size: .72rem; color: var(--muted); text-align: center; width: 70px; }
.sched__day b { font-family: "Anton", sans-serif; font-size: 1.5rem; color: var(--paper); display: block; }
.sched__match b { font-size: 1.15rem; }
.sched__match i { color: var(--coral); font-style: normal; font-family: "JetBrains Mono", monospace; font-size: .8rem; margin: 0 .4rem; }
.sched__cup { color: var(--muted); font-size: .92rem; }
.sched__state { text-align: right; font-family: "JetBrains Mono", monospace; color: var(--muted); white-space: nowrap; }
.live { background: var(--coral); color: var(--ink); font-weight: 600; padding: .25rem .6rem; animation: blink 1.3s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ===== JOIN ===== */
.join { display: grid; grid-template-columns: 1fr 420px; gap: 3.5rem; align-items: start; }
.join__lead { color: var(--muted); font-size: 1.1rem; max-width: 42ch; }
.checklist { list-style: none; margin-top: 1.6rem; }
.checklist li { padding: .5rem 0 .5rem 1.8rem; position: relative; }
.checklist li::before { content: "→"; position: absolute; left: 0; color: var(--acid); font-weight: 700; }

.signup { border: 2px solid var(--paper); padding: 1.8rem; }
.signup__top { font-size: .72rem; color: var(--acid); letter-spacing: 1px; margin-bottom: 1.2rem; }
.signup label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 1rem; font-weight: 600; }
.signup input, .signup select {
  width: 100%; margin-top: .35rem; padding: .8rem .9rem;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--line); font-family: inherit; font-size: 1rem;
}
.signup input:focus, .signup select:focus { outline: none; border-color: var(--acid); }
.signup__note { margin-top: 1rem; color: var(--acid); font-weight: 600; }

/* ===== FOOTER ===== */
.foot { border-top: 2px solid var(--paper); padding-top: 3rem; }
.foot__row { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; }
.foot__tag { color: var(--muted); margin-top: .8rem; max-width: 32ch; }
.foot__links, .foot__social { display: flex; flex-direction: column; gap: .6rem; }
.foot__links a:hover, .foot__social a:hover { color: var(--acid); }
.foot__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  border-top: 1px solid var(--line); margin-top: 2.5rem; padding: 1.3rem 0;
  font-family: "JetBrains Mono", monospace; font-size: .74rem; color: var(--muted);
}

/* ===== REVEAL ===== */
.r { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
.r.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__grid, .news, .join { grid-template-columns: 1fr; gap: 2rem; }
  .join { gap: 2.5rem; }
}
@media (max-width: 700px) {
  .burger { display: flex; }
  .bar__date { display: none; }
  .menu {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--ink-2); border-bottom: 2px solid var(--paper);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .menu.open { max-height: 300px; }
  .menu a { padding: 1rem 5%; border-top: 1px solid var(--line); }

  .rev__row { grid-template-columns: 90px 1fr; gap: 1.2rem; }
  .rev__score b { font-size: 2.4rem; }
  .sched__cup { display: none; }
}
