/* ============================================================
   UFC FREEDOM 250 – WHITE HOUSE
   Aesthetic: American combat sport brutalism
   Dark red + white + gold on near-black
   Bebas Neue for display, Barlow Condensed for UI
   ============================================================ */

:root {
  --red: #CC0000;
  --red-light: #FF1A1A;
  --gold: #C9A84C;
  --gold-light: #F0C860;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --bg: #0A0A0B;
  --bg2: #111114;
  --bg3: #18181D;
  --border: rgba(255,255,255,0.08);
  --text: #E8E4DC;
  --text-muted: #888;
  --fav-green: #2ECC71;
  --dog-red: #E74C3C;
  --radius: 4px;
  --radius-md: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(10, 10, 11, 0.96);
  border-bottom: 2px solid var(--red);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
}

.logo-ufc {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--red);
  letter-spacing: 0.05em;
}

.logo-freedom {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0 1.1rem;
  height: 64px;
  line-height: 64px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(204, 0, 0, 0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
              var(--bg);
}

.hero-stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.4) 0%, transparent 0%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.3) 0%, transparent 0%),
    radial-gradient(1px 1px at 60% 10%, rgba(255,255,255,0.5) 0%, transparent 0%),
    radial-gradient(1px 1px at 80% 30%, rgba(255,255,255,0.2) 0%, transparent 0%),
    radial-gradient(1px 1px at 45% 70%, rgba(255,255,255,0.4) 0%, transparent 0%),
    radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,0.3) 0%, transparent 0%),
    radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,0.3) 0%, transparent 0%),
    radial-gradient(1px 1px at 70% 90%, rgba(255,255,255,0.2) 0%, transparent 0%);
  pointer-events: none;
}

.hero-stripe {
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  opacity: 0.12;
}
.hero-stripe-1 { top: 30%; background: var(--red); }
.hero-stripe-2 { top: 50%; background: var(--white); }
.hero-stripe-3 { top: 70%; background: var(--red); }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-ufc {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--red);
  letter-spacing: 0.05em;
}

.hero-freedom {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--white);
  letter-spacing: 0.1em;
}

.hero-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 0.8rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  animation: fadeInUp 0.8s ease 0.25s both;
}

.hero-occasion {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.count-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--white);
  line-height: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  width: 100%;
  text-align: center;
  padding: 0.3rem 0.5rem;
}

.count-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.count-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--red);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.countdown-lg .count-num { font-size: clamp(3rem, 8vw, 5rem); min-width: 90px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-light); border-color: var(--red-light); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover { border-color: var(--white); }

.btn-accent {
  background: var(--gold);
  color: var(--bg);
  border: 2px solid var(--gold);
  display: block;
  width: fit-content;
  margin: 1.5rem auto 0;
}
.btn-accent:hover { background: var(--gold-light); }

.btn-sm {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}
.btn-sm:hover { color: var(--gold-light); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 1.5rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.sub-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin: 3rem 0 1.5rem;
}

/* ============================================================
   MAIN EVENT SPOTLIGHT
   ============================================================ */
.main-event-spotlight {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}

.spotlight-fighter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.fighter-flag { font-size: 3rem; }

.fighter-name-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--white);
  letter-spacing: 0.05em;
}

.fighter-nick {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9rem;
}

.fighter-record-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}

.fighter-title-badge {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
}

.fighter-odds-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
}

.spotlight-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.vs-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
}

.vs-weight {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.vs-belt {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.8rem;
}

/* ============================================================
   ODDS
   ============================================================ */
.odd-fav { color: var(--fav-green); }
.odd-dog { color: var(--dog-red); }

.odds-pill {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius);
}

.odd-fav.odds-pill { background: rgba(46, 204, 113, 0.15); color: var(--fav-green); }
.odd-dog.odds-pill { background: rgba(231, 76, 60, 0.15); color: var(--dog-red); }

.odds-pill-lg {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
}
.odd-fav.odds-pill-lg { background: rgba(46, 204, 113, 0.12); color: var(--fav-green); border: 1px solid rgba(46,204,113,0.3); }
.odd-dog.odds-pill-lg { background: rgba(231, 76, 60, 0.12); color: var(--dog-red); border: 1px solid rgba(231,76,60,0.3); }

/* ============================================================
   FIGHT LIST (homepage preview)
   ============================================================ */
.fight-card-preview { background: var(--bg); }

.fight-list { display: flex; flex-direction: column; gap: 0.5rem; }

.fight-row {
  display: grid;
  grid-template-columns: 160px 1fr 150px 100px;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.fight-row:hover {
  background: var(--bg3);
  border-left-color: var(--red);
}

.fight-row-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.type-main { color: var(--gold); }
.type-co { color: #E67E22; }
.type-card { color: var(--text-muted); }
.type-prelim { color: #7F8C8D; }

.fight-row-matchup {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.fight-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  transition: color 0.2s;
}
.fight-name:hover { color: var(--red); }

.fight-vs-small {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fight-row-weight {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fight-row-odds {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
}

/* ============================================================
   NEWS
   ============================================================ */
.news-section { background: var(--bg2); }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }

.news-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 1.5rem;
  transition: transform 0.2s;
}
.news-card:hover { transform: translateY(-3px); }

.news-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.3);
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.5rem;
}

.news-date { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; }

.news-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.news-summary { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0.8rem; }

.news-source { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   INFO STRIP
   ============================================================ */
.info-strip { background: var(--bg3); border-top: 1px solid var(--border); }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; }

.info-item { text-align: center; }
.info-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.info-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.info-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: 120px 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(204,0,0,0.15) 0%, transparent 100%), var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.page-hero-sub { color: var(--text-muted); font-size: 0.9rem; }

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.back-link:hover { color: var(--white); }

/* ============================================================
   FIGHT CARD FULL PAGE
   ============================================================ */
.fight-card-full {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  margin-bottom: 1.5rem;
  transition: border-left-color 0.2s;
}
.fight-card-full:hover { border-left-color: var(--red); }
.fight-card-main { border-left-color: var(--gold); border-top: 3px solid var(--gold); }
.fight-card-main:hover { border-left-color: var(--gold); }

.fight-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

.fight-type-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
}

.badge-main { color: var(--gold); background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); }
.badge-co { color: #E67E22; background: rgba(230,126,34,0.1); border: 1px solid rgba(230,126,34,0.3); }
.badge-card { color: var(--text-muted); background: rgba(255,255,255,0.05); border: 1px solid var(--border); }
.badge-prelim { color: #7F8C8D; background: rgba(127,140,141,0.1); border: 1px solid rgba(127,140,141,0.3); }

.belt-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.weight-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: auto;
}

.fight-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 2rem 1.5rem;
}

.fighter-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  border-radius: var(--radius);
  cursor: pointer;
}
.fighter-card:hover { border-color: var(--border); background: rgba(255,255,255,0.03); }
.fighter-card-right { flex-direction: row-reverse; text-align: right; }

.fighter-card-flag { font-size: 2.2rem; }

.fighter-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.fighter-card-nick { font-style: italic; font-size: 0.8rem; color: var(--text-muted); }
.fighter-card-record { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--gold); }
.fighter-card-country { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.fighter-card-info-right { text-align: right; }

.fighter-card-odds {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.fight-vs-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.fight-vs-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
}

.fight-vs-prediction {
  font-size: 0.7rem;
  color: var(--text-muted);
  max-width: 140px;
  line-height: 1.3;
  text-align: center;
  font-style: italic;
}

.fight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.1);
}

.odds-source { font-size: 0.7rem; color: var(--text-muted); }

/* ============================================================
   FIGHTER PROFILE
   ============================================================ */
.fighter-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.stat-card-big {
  background: var(--red);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.stat-big-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.2rem;
}

.stat-big-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--white);
  letter-spacing: 0.1em;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 0.8rem;
  text-align: center;
}

.stat-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.stat-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); }

.fighter-title-full {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.6rem 1rem;
  margin-bottom: 1.5rem;
}

.fighter-bio { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.5rem; }

.fighter-odds-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 1rem;
}
.odds-box-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.odds-box-value { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--fav-green); }

.vs-matchup-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.vmc-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.8rem; }
.vmc-opponent { display: block; cursor: pointer; }
.vmc-flag { font-size: 2.5rem; margin-bottom: 0.3rem; }
.vmc-name { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--white); }
.vmc-nick { font-style: italic; color: var(--text-muted); font-size: 0.85rem; }
.vmc-record { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--gold); margin: 0.3rem 0; }
.vmc-belt { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 0.8rem; }

.odds-matchup {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}
.odds-matchup-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.8rem; }
.odds-matchup-row { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.odds-matchup-row:last-of-type { border-bottom: none; }
.oma-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.95rem; }
.oma-odds { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; }
.odds-source-note { font-size: 0.65rem; color: var(--text-muted); margin-top: 0.5rem; }

.fight-details-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 1.2rem;
}
.fdb-row { display: flex; justify-content: space-between; padding: 0.3rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.fdb-row:last-child { border-bottom: none; }
.fdb-row span { color: var(--text-muted); }

/* ============================================================
   ODDS PAGE
   ============================================================ */
.odds-disclaimer {
  background: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.2);
  border-left: 4px solid var(--dog-red);
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.odds-table-wrap { overflow-x: auto; margin-bottom: 3rem; }

.odds-table { width: 100%; border-collapse: collapse; }

.odds-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.7rem 1rem;
  text-align: left;
  background: var(--bg3);
  border-bottom: 2px solid var(--red);
}

.odds-table td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; }

.odds-row:hover td { background: rgba(255,255,255,0.02); }
.row-main td { background: rgba(201,168,76,0.04); }

.td-fighter a { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1rem; color: var(--text); transition: color 0.2s; }
.td-fighter a:hover { color: var(--red); }

.td-vs { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--red); text-align: center; }
.td-fav { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--fav-green); font-size: 0.9rem; }
.td-weight { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; color: var(--text-muted); }

.fight-type-badge-sm {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
}

.odds-visual-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }

.odds-vis-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: transform 0.2s;
}
.odds-vis-card:hover { transform: translateY(-2px); }

.ovc-type { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
.ovc-belt { font-size: 0.75rem; color: var(--gold); margin-bottom: 0.8rem; }

.ovc-matchup { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.ovc-fighter { flex: 1; text-align: center; }
.ovc-flag { font-size: 2rem; margin-bottom: 0.3rem; }
.ovc-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 0.2rem; }
.ovc-odds { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; }
.ovc-prob { font-size: 0.7rem; color: var(--text-muted); }
.ovc-vs { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--red); }

.ovc-bar-wrap { height: 8px; background: rgba(231,76,60,0.3); margin-bottom: 0.4rem; border-radius: 2px; overflow: hidden; }
.ovc-bar { height: 100%; background: var(--fav-green); border-radius: 2px; }
.ovc-bar-labels { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--text-muted); }

.odds-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }

/* ============================================================
   NEWS FULL
   ============================================================ */
.news-full-grid { display: flex; flex-direction: column; gap: 1.5rem; }

.news-full-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  padding: 2rem;
  transition: border-left-color 0.2s;
}
.news-full-card:hover { border-left-color: var(--red); }
.news-featured { border-left-color: var(--gold); }
.news-featured:hover { border-left-color: var(--gold-light); }

.news-full-meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
.news-source-badge { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

.news-full-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--white); margin-bottom: 0.8rem; line-height: 1.3; }
.news-full-body { color: var(--text-muted); line-height: 1.65; }

/* Quick Links */
.quick-links-section { background: var(--bg2); }
.quick-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 2rem 3rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  flex: 1;
  min-width: 160px;
}
.quick-link-card:hover { border-color: var(--red); background: rgba(204,0,0,0.05); }
.qlc-icon { font-size: 2rem; }
.qlc-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }

/* ============================================================
   SCHEDULE PAGE
   ============================================================ */
.schedule-countdown {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
}

.sc-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }

.timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 3rem; }

.timeline-item {
  display: grid;
  grid-template-columns: 60px 4px 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-icon {
  font-size: 1.8rem;
  text-align: center;
  padding-top: 1rem;
}

.timeline-connector {
  width: 4px;
  background: var(--border);
  min-height: 100%;
  position: relative;
  margin: 1rem 0;
}
.timeline-connector.has-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -2rem;
  background: var(--border);
}

.timeline-content {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 1.2rem 1.5rem;
  margin: 0.5rem 0;
}

.tl-day { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.tl-time { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.tl-event { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--white); margin-bottom: 0.3rem; }
.tl-venue { font-size: 0.8rem; color: var(--text-muted); }

.fight-order-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 3rem; }

.fo-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.fo-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--red);
  width: 40px;
  text-align: center;
  opacity: 0.6;
}

.fo-info { flex: 1; }
.fo-matchup { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); }
.fo-vs { font-size: 0.75rem; color: var(--text-muted); margin: 0 0.3rem; }
.fo-meta { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }

.fo-badge { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; }

.key-details { }
.kd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.kd-item { background: var(--bg2); border: 1px solid var(--border); padding: 1.2rem; }
.kd-item strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); display: block; margin-bottom: 0.4rem; }
.kd-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }

.about-main h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin: 2rem 0 0.6rem;
}
.about-main h2:first-child { margin-top: 0; }
.about-main p { color: var(--text-muted); line-height: 1.7; font-size: 0.9rem; }

.about-fact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: sticky;
  top: 80px;
}

.afc-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--white); letter-spacing: 0.1em; margin-bottom: 1rem; }
.afc-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.4rem 0; border-bottom: 1px solid var(--border); font-size: 0.8rem; gap: 0.5rem; }
.afc-item:last-child { border-bottom: none; }
.afc-item span { color: var(--text-muted); flex-shrink: 0; }
.afc-item strong { color: var(--white); text-align: right; font-size: 0.8rem; }

.about-links { display: flex; flex-direction: column; gap: 0.6rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg3);
  border-top: 2px solid var(--red);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-inner { max-width: 800px; margin: 0 auto; }

.footer-logo { display: flex; align-items: baseline; justify-content: center; gap: 0.4rem; margin-bottom: 0.8rem; }

.footer-event { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.footer-broadcast { font-size: 0.8rem; color: var(--gold); margin-bottom: 1.5rem; }

.footer-links { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.3rem 1rem;
  border-right: 1px solid var(--border);
  transition: color 0.2s;
}
.footer-links a:last-child { border-right: none; }
.footer-links a:hover { color: var(--white); }

.footer-disclaimer { font-size: 0.7rem; color: rgba(255,255,255,0.2); line-height: 1.5; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--bg3); border-bottom: 2px solid var(--red); padding: 1rem 0; z-index: 999; }
  .nav-links.open a { height: auto; line-height: 1; padding: 0.8rem 2rem; }
  .nav-toggle { display: block; }

  .spotlight-card { grid-template-columns: 1fr; text-align: center; }
  .fight-matchup { grid-template-columns: 1fr; }
  .fighter-card-right { flex-direction: row; text-align: left; }
  .fighter-card-info-right { text-align: left; }
  .fighter-profile { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-fact-card { position: static; }
  .fight-row { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 40px 3px 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 3rem 1rem; }
  .spotlight-card { padding: 1.5rem 1rem; }
  .count-num { font-size: 2rem; }
  .count-block { min-width: 55px; }
}

/* ============================================================
   FIGHTER HEADSHOTS
   ============================================================ */

/* Spotlight section on homepage */
.spotlight-photo {
  width: 200px;
  height: 260px;
  overflow: hidden;
  margin: 0 auto 0.8rem;
  position: relative;
  background: linear-gradient(to bottom, var(--bg3), var(--bg));
  border-bottom: 3px solid var(--red);
}
.spotlight-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
  transition: filter 0.3s;
}
.spotlight-photo img:hover { filter: grayscale(0%); }

/* Fight card page – fighter card photos */
.fighter-card-photo {
  width: 90px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg3);
  border-bottom: 2px solid var(--red);
}
.fighter-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s;
}
.fighter-card:hover .fighter-card-photo img { transform: scale(1.05); }

/* Homepage fight list row photos */
.fight-row-fighter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.fight-row-photo {
  width: 42px;
  height: 54px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg3);
  border-bottom: 2px solid var(--red);
}
.fight-row-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Fighter profile page – large headshot */
.fighter-profile-headshot {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 400px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
}
.fighter-profile-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.headshot-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 2rem 1rem 0.8rem;
  display: flex;
  flex-direction: column;
}
.headshot-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.headshot-nick {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
}

/* Versus matchup card on fighter page – opponent thumbnail */
.vmc-headshot {
  width: 100px;
  height: 130px;
  overflow: hidden;
  margin: 0 auto 0.6rem;
  background: var(--bg3);
  border-bottom: 2px solid var(--red);
}
.vmc-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s;
}
.vmc-opponent:hover .vmc-headshot img { transform: scale(1.05); }

/* Odds row fighter photo */
.oma-fighter {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.oma-photo {
  width: 36px;
  height: 46px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg3);
  border-bottom: 2px solid var(--red);
}
.oma-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Fix fight-row-matchup layout to handle photos */
.fight-row-matchup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* ============================================================
   LIVE BADGES & NOTICES
   ============================================================ */
.live-badge {
  display: inline-block;
  background: #CC0000;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  animation: pulse 2s infinite;
  margin-right: 0.4rem;
  vertical-align: middle;
}

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

.live-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(46, 204, 113, 0.07);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-left: 4px solid var(--fav-green);
  padding: 0.9rem 1.2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.live-notice strong { color: var(--fav-green); }

.static-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 4px solid var(--gold);
  padding: 0.9rem 1.2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.tag-live {
  background: rgba(204, 0, 0, 0.15) !important;
  color: var(--red-light) !important;
  border-color: rgba(204, 0, 0, 0.35) !important;
  animation: pulse 2s infinite;
}

/* News title links */
.news-full-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.news-full-title a:hover { color: var(--gold); }

/* ============================================================
   API SETUP NOTICE (odds page)
   ============================================================ */
.api-setup-notice {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.asn-icon { font-size: 2rem; flex-shrink: 0; }
.asn-body strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; color: var(--white); margin-bottom: 0.6rem; letter-spacing: 0.05em; }
.asn-body ol { padding-left: 1.2rem; color: var(--text-muted); font-size: 0.875rem; line-height: 2; }
.asn-body a { color: var(--gold); text-decoration: underline; }
.asn-body code { background: rgba(255,255,255,0.08); padding: 0.1rem 0.4rem; border-radius: 3px; font-size: 0.85rem; color: var(--white); }
.asn-body p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.6rem; }

/* ============================================================
   ODDS TABLE – fighter photo thumbnails
   ============================================================ */
.td-fighter-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}
.td-fighter-inner:hover { color: var(--red); }
.td-photo {
  width: 38px;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg3);
  border-bottom: 2px solid var(--red);
}
.td-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   ODDS VISUAL CARDS – fighter photo
   ============================================================ */
.ovc-photo {
  width: 72px;
  height: 90px;
  overflow: hidden;
  margin: 0 auto 0.5rem;
  background: var(--bg3);
  border-bottom: 2px solid var(--red);
}
.ovc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
