:root {
  --bg: #07090f;
  --panel: rgba(13, 18, 28, 0.84);
  --panel-2: rgba(17, 24, 38, 0.92);
  --line: rgba(255,255,255,0.09);
  --text: #eef2f8;
  --muted: #a4b0c3;
  --red: #ef2a2a;
  --red-2: #b31217;
  --ice: #d8ecff;
  --gold: #f2bc5d;
  --shadow: 0 24px 80px rgba(0,0,0,0.45);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  /* Updated background to evoke a more vibrant, fight‑night atmosphere. */
  background:
    radial-gradient(circle at 30% 20%, rgba(239,42,42,0.18), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(239,42,42,0.12), transparent 50%),
    linear-gradient(160deg, #1b0206 0%, #32050a 40%, #05080f 100%);
  color: var(--text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 78%);
}

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

.topbar {
  max-width: 1240px;
  margin: 0 auto;
  /* Increase padding to accommodate a larger logo */
  padding: 32px 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.topbar.compact { position: relative; }

.brand-wrap { display: flex; align-items: center; gap: 16px; }
.brand-logo {
  /* Enlarged logo to cover most of the top bar. */
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: white;
  padding: 6px;
}
.eyebrow {
  font-size: 0.77rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.topbar h1 {
  font-family: "Barlow Condensed", sans-serif;
  /* Increase the headline size for stronger branding in the header */
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin: 0;
  line-height: 0.85;
}
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}
nav a:hover { color: white; }

main { max-width: 1240px; margin: 0 auto; padding: 0 24px 80px; }
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding-top: 22px;
}
.hero-copy, .hero-card, .panel, .showcase-frame, .faq-card, .sponsor-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy { padding: 34px; }
.hero-card { padding: 18px; }
.kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ice);
  background: rgba(255,255,255,0.07);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}
.hero h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.9;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.hero h2 span { color: var(--red); }
.hero p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0; }
.bell-button, .ghost-button, .primary-cta, .glove-button {
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  cursor: pointer;
}
.bell-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), #fe5a5a);
  color: white;
  box-shadow: 0 14px 35px rgba(239,42,42,0.38);
}
.bell-button:hover, .primary-cta:hover, .glove-button:hover { transform: translateY(-1px); }
.ghost-button {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.meta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.meta-strip > div {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-strip strong { font-size: 0.84rem; color: var(--gold); text-transform: uppercase; letter-spacing: .09em; }
.meta-strip span { font-weight: 700; }

.fight-poster {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 720px;
}

.ticker-band {
  overflow: hidden;
  margin: 28px 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(239,42,42,.08), rgba(255,255,255,.03), rgba(239,42,42,.08));
}
.ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  padding: 14px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  animation: drift 28s linear infinite;
}
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.purchase-grid, .stream-tech-grid, .faq-grid, .watch-layout {
  display: grid;
  gap: 24px;
}
.purchase-grid { grid-template-columns: 1.3fr 0.7fr; }
.stream-tech-grid { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.watch-layout { grid-template-columns: 1.25fr .75fr; padding-top: 20px; }

.panel { padding: 28px; }
.panel-heavy { padding: 34px; background: var(--panel-2); }
.section-head { margin-bottom: 18px; }
.section-head.centered { text-align: center; }
.section-head h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin: 6px 0 0;
  line-height: .95;
}
.lead { color: var(--muted); line-height: 1.7; }

.price-card {
  margin: 24px 0;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(239,42,42,0.09));
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}
.label { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
.price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: .9;
}
.small-note, .microcopy { color: var(--muted); font-size: .9rem; }

.promo-shell {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.promo-label { display: block; font-weight: 800; margin-bottom: 10px; }
.promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.promo-row input, .access-form input {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.26);
  color: white;
  border-radius: 14px;
  padding: 15px 16px;
  width: 100%;
}
.promo-row input::placeholder, .access-form input::placeholder { color: #8f99ad; }
.glove-button {
  background: linear-gradient(135deg, #f5f7fb, #c6d0e6);
  color: #09111d;
  min-width: 128px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.promo-message { margin-top: 12px; color: var(--muted); font-size: .92rem; min-height: 1.3rem; }
.checkout-actions { display: flex; align-items: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.primary-cta {
  background: linear-gradient(135deg, #ffffff, #d9e3fb);
  color: #07101e;
  box-shadow: 0 14px 28px rgba(217,227,251,0.18);
}

.steps { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.9; }
.status-card, .note-card {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  display: flex;
  gap: 14px;
}
.status-dot, .live-pill::before {
  width: 12px; height: 12px; border-radius: 50%; background: var(--red); display: inline-block; content: "";
  box-shadow: 0 0 0 8px rgba(239,42,42,0.15);
}

.showcase { margin: 34px 0; }
.showcase-frame { padding: 18px; }
.showcase-frame img { border-radius: 18px; }
.bullet-list { margin: 0; padding-left: 22px; color: var(--muted); line-height: 1.9; }
.bullet-list code { color: white; }
.sponsors-section { margin: 40px 0; }
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.sponsor-card {
  padding: 18px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
}
.sponsor-card.mark-card { background: rgba(255,255,255,0.82); }
.sponsor-card img { max-height: 130px; object-fit: contain; }
.hero-sponsors {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
  justify-content: center;
  align-items: center;
}
.hero-sponsors img {
  background: rgba(255,255,255,0.9);
  padding: 10px;
  border-radius: 12px;
  height: 80px;
  width: auto;
  object-fit: contain;
  box-shadow: var(--shadow);
}

/* Demo screen placeholder styling */
.demo-screen {
  background: #000;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
}
.faq-card { padding: 20px; }
.faq-card h4 { margin: 0 0 8px; font-size: 1.05rem; }
.faq-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 34px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

.watch-body .player-panel, .watch-body .access-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.player-panel { padding: 28px; }
.player-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.player-head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  margin: 6px 0 0;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239,42,42,0.12);
  border: 1px solid rgba(239,42,42,0.35);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  color: white;
}
.player-frame {
  margin-top: 18px;
  background: #020305;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.player-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center; text-align: center; padding: 20px;
  background:
    radial-gradient(circle at center, rgba(239,42,42,0.14), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.player-placeholder p { margin: 14px 0 8px; font-weight: 700; }
.player-placeholder code { color: var(--muted); }
.ring {
  width: 120px; height: 120px; border-radius: 50%; border: 12px solid rgba(255,255,255,0.06); position: relative;
}
.ring::before, .ring::after {
  content: ""; position: absolute; inset: 14px; border-radius: 50%; border: 10px solid rgba(239,42,42,0.5);
}
.ring::after { inset: 38px; border-color: rgba(255,255,255,0.08); }
.watch-notes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 18px; }
.access-form { display: grid; gap: 14px; }
.access-form label { display: grid; gap: 8px; font-weight: 700; }

@media (max-width: 980px) {
  .hero, .purchase-grid, .stream-tech-grid, .watch-layout, .faq-grid, .sponsor-grid, .watch-notes {
    grid-template-columns: 1fr;
  }
  .topbar { position: relative; }
}

@media (max-width: 720px) {
  .topbar { padding-inline: 16px; }
  main { padding-inline: 16px; }
  .hero-copy, .hero-card, .panel, .player-panel, .access-panel { padding: 20px; }
  nav { gap: 12px; }
  .brand-logo { width: 62px; height: 62px; }
  .meta-strip { grid-template-columns: 1fr; }
  .promo-row { grid-template-columns: 1fr; }
  .site-footer { padding-inline: 16px; }
}
