:root {
  --ink: #0b0908;
  --canvas: #16110e;
  --leather: #5c2e1a;
  --gold: #e8b84a;
  --gold-bright: #f6d47a;
  --gold-deep: #8a6418;
  --cream: #f3e6d0;
  --cream-dim: #c9b89a;
  --rope: #c41e3a;
  --line: #2a2118;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ── ringside perspective (background only — sections stay flat) ── */
.arena {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(232, 184, 74, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(92, 46, 26, 0.45), transparent 60%),
    linear-gradient(180deg, #100c0a 0%, #1a1410 40%, #0b0908 100%);
}
.arena-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(246, 212, 122, 0.08), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(246, 212, 122, 0.08), transparent 28%);
  pointer-events: none;
}
.arena-floor {
  position: absolute;
  left: 50%;
  bottom: -8%;
  width: 220%;
  height: 58%;
  transform: translateX(-50%) perspective(720px) rotateX(58deg);
  transform-origin: center top;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(232, 184, 74, 0.05) 0 2px,
      transparent 2px 92px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(243, 230, 208, 0.04) 0 2px,
      transparent 2px 70px
    ),
    linear-gradient(180deg, #2a1c14, #120e0c);
  border-top: 3px solid rgba(232, 184, 74, 0.28);
  pointer-events: none;
}
.arena-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgba(243, 230, 208, 0.22) 0.7px, transparent 1.1px);
  background-size: 18px 18px;
  pointer-events: none;
}

/* ── commentator desk / nav ── */
.desk {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 9, 8, 0.88);
  backdrop-filter: blur(12px);
}
.desk-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-plate {
  width: 48px;
  height: 48px;
  border: 3px solid #111;
  box-shadow: 3px 3px 0 #000, 4px 4px 0 var(--gold);
  overflow: hidden;
  background: #1a1410;
}
.brand-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-copy b {
  font-family: 'Bungee', cursive;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.brand-copy small {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.desk-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.desk-nav a:hover { color: var(--gold); }

.desk-actions { display: flex; gap: 8px; }
.chip {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 3px solid #111;
  box-shadow: 3px 3px 0 #000;
  font-size: 16px;
}
.chip-x { background: #111; color: #fff; }
.chip-buy { background: var(--gold); color: #111; }
.chip-dex { background: var(--cream); color: #111; }
.chip:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #000; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--cream);
  border: 3px solid #111;
  box-shadow: 3px 3px 0 #000;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
}
.burger span {
  display: block;
  height: 3px;
  background: #111;
}

.rope-bar {
  height: 14px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--rope) 0 28px,
      #f5efe4 28px 40px,
      var(--rope) 40px 68px,
      #111 68px 74px
    );
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.25), 0 4px 0 #000;
}
.rope-bar.mid { margin: 0; }

/* ── hero: typographic fight poster, no images ── */
.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  padding: 56px 22px 72px;
}
.hero-inner {
  width: min(920px, 100%);
  text-align: center;
}
.fight-tag {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 14px;
  border: 3px solid #111;
  background: var(--rope);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #000;
}

.poster {
  position: relative;
  margin: 0 auto 28px;
}
.poster-burst {
  position: absolute;
  inset: -18% -8%;
  background: radial-gradient(circle, rgba(232, 184, 74, 0.22), transparent 62%);
  clip-path: polygon(
    50% 0, 57% 28%, 86% 14%, 70% 42%, 100% 50%, 70% 58%,
    86% 86%, 57% 72%, 50% 100%, 43% 72%, 14% 86%, 30% 58%,
    0 50%, 30% 42%, 14% 14%, 43% 28%
  );
  z-index: 0;
}
.poster h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 0.84;
}
.line-nike,
.line-tyson {
  display: block;
  font-family: 'Bungee', cursive;
  font-size: clamp(64px, 16vw, 148px);
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow:
    4px 4px 0 #000,
    8px 8px 0 var(--gold),
    9px 9px 0 #000;
}
.line-tyson {
  font-family: 'Bungee Inline', cursive;
  color: var(--gold-bright);
  text-shadow:
    4px 4px 0 #000,
    8px 8px 0 var(--rope);
}
.ticker {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.bubble {
  position: relative;
  margin: 28px auto 0;
  max-width: 640px;
  padding: 18px 22px 22px;
  background: var(--cream);
  color: #1a120c;
  border: 4px solid #111;
  box-shadow: 6px 6px 0 #000;
  font-family: 'Kalam', cursive;
  font-size: 22px;
  line-height: 1.35;
}
.bubble::after {
  content: "";
  position: absolute;
  left: 48px;
  bottom: -18px;
  border: 18px solid transparent;
  border-top-color: #111;
}
.bubble::before {
  content: "";
  position: absolute;
  left: 52px;
  bottom: -12px;
  border: 14px solid transparent;
  border-top-color: var(--cream);
  z-index: 1;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 3px solid #111;
  box-shadow: 4px 4px 0 #000;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 #000; }
.btn-gold { background: var(--gold); color: #111; }
.btn-ink { background: #111; color: var(--cream); }
.btn-cream { background: var(--cream); color: #111; }

.ticket {
  margin: 28px auto 0;
  max-width: 720px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 8px;
  background: #f7edd8;
  color: #1a120c;
  border: 3px dashed #111;
  box-shadow: 5px 5px 0 #000;
  position: relative;
}
.ticket-punch {
  width: 18px;
  height: 18px;
  margin: 0 4px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 28px 0 var(--ink);
}
.ticket-label {
  font-weight: 800;
  letter-spacing: 0.16em;
  background: #111;
  color: var(--gold);
  padding: 6px 8px;
}
.ticket-ca {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}
.ticket-copy {
  border: 3px solid #111;
  background: var(--gold);
  width: 40px;
  height: 40px;
}

/* ── shared section chrome ── */
.bout,
.score,
.corner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 22px;
}
.bout-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  border-bottom: 4px solid var(--gold);
  padding-bottom: 12px;
}
.round-mark {
  font-family: 'Bungee', cursive;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
}
.bout-head h2 {
  margin: 0;
  font-family: 'Bungee', cursive;
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 0.04em;
}

/* ── about: broadcast still + commentary desk ── */
.broadcast {
  margin: 0 0 28px;
  background: #111;
  border: 4px solid #111;
  box-shadow: 8px 8px 0 #000, 10px 10px 0 var(--gold);
}
.broadcast img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.broadcast figcaption,
.still figcaption,
.case figcaption {
  margin: 0;
  padding: 10px 14px;
  background: var(--cream);
  color: #1a120c;
  font-family: 'Kalam', cursive;
  font-size: 16px;
  border-top: 3px solid #111;
}

.commentary {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 32px;
  padding: 22px;
  background: rgba(26, 20, 16, 0.86);
  border: 4px solid #111;
  box-shadow: 6px 6px 0 #000;
}
.seal {
  text-align: center;
}
.seal img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 4px solid #111;
  box-shadow: 4px 4px 0 var(--gold);
  margin: 0 auto 8px;
}
.seal span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.commentary-copy .lead {
  margin: 0 0 12px;
  font-family: 'Kalam', cursive;
  font-size: 26px;
  line-height: 1.25;
  color: var(--gold-bright);
}
.commentary-copy p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  color: var(--cream);
}

.stills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.still {
  margin: 0;
  border: 4px solid #111;
  box-shadow: 6px 6px 0 #000;
  background: #111;
}
.still img {
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}
.still figcaption b {
  display: block;
  font-family: 'Bungee', cursive;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ── how to buy: judge's scorecard ── */
.scorecard {
  background: #efe4cb;
  color: #1a120c;
  border: 4px solid #111;
  box-shadow: 8px 8px 0 #000;
}
.score-meta {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background: #111;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 14px;
}
.score-rows {
  list-style: none;
  margin: 0;
  padding: 0;
}
.score-rows li {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 18px;
  border-top: 3px solid #111;
}
.score-rows li:nth-child(odd) { background: #f7edd8; }
.score-rows li:nth-child(even) { background: #e8d7b4; }
.rnd {
  font-family: 'Bungee', cursive;
  font-size: 22px;
  color: var(--rope);
}
.score-rows h3 {
  margin: 0 0 4px;
  font-family: 'Bungee', cursive;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.score-rows p {
  margin: 0;
  font-family: 'Kalam', cursive;
  font-size: 17px;
  line-height: 1.3;
}
.pts {
  min-width: 92px;
  text-align: center;
  padding: 8px 10px;
  border: 3px solid #111;
  background: #fff;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.pts-link {
  background: var(--gold);
}
.pts-link:hover { background: var(--gold-bright); }

/* ── community: trophy case + lockers ── */
.corner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
.case {
  margin: 0;
  border: 4px solid #111;
  box-shadow: 8px 8px 0 #000, 10px 10px 0 var(--gold);
  background: #111;
}
.case img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.corner-lead {
  margin: 0 0 18px;
  font-family: 'Kalam', cursive;
  font-size: 22px;
  line-height: 1.35;
}
.lockers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.locker {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 4px solid #111;
  box-shadow: 5px 5px 0 #000;
}
.locker i { font-size: 26px; }
.locker b {
  display: block;
  font-family: 'Bungee', cursive;
  font-size: 18px;
}
.locker small {
  color: inherit;
  opacity: 0.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.locker-x { background: #111; color: #fff; }
.locker-buy { background: var(--gold); color: #111; }
.locker-dex { background: var(--cream); color: #111; }
.locker:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 #000; }

/* ── footer ── */
.foot-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 3px solid #111;
  box-shadow: 3px 3px 0 var(--gold);
}
.foot-brand strong {
  display: block;
  font-family: 'Bungee', cursive;
  font-size: 16px;
}
.foot-brand span,
.foot p {
  color: var(--cream-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--gold);
  color: #111;
  border: 3px solid #111;
  box-shadow: 4px 4px 0 #000;
  padding: 10px 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 860px) {
  .desk-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #110e0c;
    border-bottom: 3px solid var(--gold);
    padding: 16px 22px 22px;
    flex-direction: column;
    margin: 0;
  }
  .desk-nav.open { display: flex; }
  .burger { display: flex; }
  .commentary,
  .stills,
  .corner-grid,
  .score-rows li {
    grid-template-columns: 1fr;
  }
  .seal { justify-self: center; }
  .pts { justify-self: start; }
  .foot-inner { flex-direction: column; text-align: center; }
  .line-nike,
  .line-tyson { text-shadow: 3px 3px 0 #000, 6px 6px 0 var(--gold); }
}
