/*
Theme Name: BoxingArena
Theme URI: https://boxingarena.online
Author: BoxingArena Team
Author URI: https://boxingarena.online
Description: Premium boxing analytics & fight predictions WordPress theme. Fully compatible with Elementor. Dark, high-contrast design for fight data platforms, sports betting analytics, and boxing news sites.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boxingarena
Tags: dark, elementor, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, sports, boxing, analytics
*/

/* =========================================================
   CSS CUSTOM PROPERTIES — Design Tokens
   ========================================================= */
:root {
  --ba-gold:         #C9A84C;
  --ba-gold-bright:  #F0C040;
  --ba-red:          #C0392B;
  --ba-red-hot:      #FF3B2F;
  --ba-blue:         #2980B9;
  --ba-bg:           #0A0A0A;
  --ba-bg2:          #111111;
  --ba-bg3:          #181818;
  --ba-surface:      #1E1E1E;
  --ba-border:       rgba(201,168,76,0.18);
  --ba-text:         #F0EDE6;
  --ba-muted:        #888888;
  --ba-win:          #27AE60;
  --ba-loss:         #C0392B;
  --ba-draw:         #F39C12;

  --ba-font-display: 'Bebas Neue', sans-serif;
  --ba-font-ui:      'Barlow Condensed', sans-serif;
  --ba-font-body:    'Barlow', sans-serif;

  --ba-radius:       0px;
  --ba-transition:   0.2s ease;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--ba-bg);
  color: var(--ba-text);
  font-family: var(--ba-font-body);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

a {
  color: var(--ba-gold);
  text-decoration: none;
  transition: color var(--ba-transition);
}
a:hover { color: var(--ba-gold-bright); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
}

/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */
.ba-display {
  font-family: var(--ba-font-display);
  letter-spacing: 2px;
  line-height: 0.95;
}

.ba-ui {
  font-family: var(--ba-font-ui);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ba-body {
  font-family: var(--ba-font-body);
  font-weight: 300;
}

.ba-tag {
  font-family: var(--ba-font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ba-gold);
  margin-bottom: 12px;
  display: block;
}

.ba-section-title {
  font-family: var(--ba-font-display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 2px;
  line-height: 1;
}
.ba-section-title .accent  { color: var(--ba-red-hot); }
.ba-section-title .gold    { color: var(--ba-gold); }

/* =========================================================
   LAYOUT
   ========================================================= */
.ba-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.ba-section {
  padding: 80px 80px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.ba-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ba-font-ui);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all var(--ba-transition);
  text-decoration: none;
}

.ba-btn-primary {
  background: var(--ba-red-hot);
  color: #fff;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.ba-btn-primary:hover {
  background: var(--ba-gold);
  color: #fff;
  transform: translateY(-2px);
}

.ba-btn-outline {
  background: transparent;
  color: var(--ba-gold);
  border: 1px solid var(--ba-border);
  padding: 13px 28px;
}
.ba-btn-outline:hover {
  border-color: var(--ba-gold);
  background: rgba(201,168,76,0.07);
  color: var(--ba-gold);
}

.ba-btn-gold {
  background: var(--ba-gold);
  color: var(--ba-bg);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.ba-btn-gold:hover {
  background: var(--ba-gold-bright);
  color: var(--ba-bg);
  transform: translateY(-2px);
}

/* =========================================================
   NAV CTA BUTTON
   ========================================================= */
.nav-cta {
  background: var(--ba-red-hot);
  color: #fff;
  font-family: var(--ba-font-ui);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background var(--ba-transition);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { background: var(--ba-gold); color: #fff; }

/* =========================================================
   PILLS / TAGS
   ========================================================= */
.ba-pill {
  font-family: var(--ba-font-ui);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 16px;
  border: 1px solid var(--ba-border);
  color: var(--ba-muted);
  cursor: pointer;
  transition: all var(--ba-transition);
  display: inline-block;
}
.ba-pill:hover,
.ba-pill.active       { border-color: var(--ba-gold);    color: var(--ba-gold);    background: rgba(201,168,76,0.07); }
.ba-pill.active-red   { border-color: var(--ba-red-hot); color: var(--ba-red-hot); background: rgba(192,57,43,0.07);  }
.ba-pill.active-blue  { border-color: var(--ba-blue);    color: var(--ba-blue);    background: rgba(41,128,185,0.07); }

/* =========================================================
   CONFIDENCE PILLS (Fight Table)
   ========================================================= */
.confidence-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-family: var(--ba-font-ui);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}
.confidence-pill.high { background: rgba(39,174,96,0.15);   color: #27AE60;           }
.confidence-pill.med  { background: rgba(243,156,18,0.15);  color: #F39C12;           }
.confidence-pill.low  { background: rgba(192,57,43,0.15);   color: var(--ba-red-hot); }

/* =========================================================
   CARDS / SURFACES
   ========================================================= */
.ba-card {
  background: var(--ba-bg3);
  border: 1px solid var(--ba-border);
}

.ba-surface {
  background: var(--ba-surface);
}

/* =========================================================
   FIGHT CARD COMPONENT
   ========================================================= */
.fight-card {
  background: var(--ba-bg3);
  border: 1px solid var(--ba-border);
  width: 100%;
  max-width: 460px;
}

.fight-card-header {
  background: var(--ba-surface);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ba-border);
}

.fight-card-label {
  font-family: var(--ba-font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-muted);
}

.fight-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ba-font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-red-hot);
  font-weight: 600;
}
.fight-live::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--ba-red-hot);
  border-radius: 50%;
  animation: ba-pulse 1.5s infinite;
}

.fight-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  padding: 28px 20px;
  align-items: center;
}

.fighter-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.fighter-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ba-surface);
  border: 2px solid var(--ba-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ba-font-display);
  font-size: 22px;
  color: var(--ba-gold);
  overflow: hidden;
}
.fighter-avatar.red-corner  { border-color: var(--ba-red-hot); }
.fighter-avatar.blue-corner { border-color: var(--ba-blue);    }
.fighter-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.fighter-name {
  font-family: var(--ba-font-display);
  font-size: 20px;
  letter-spacing: 1px;
  text-align: center;
  color: var(--ba-text);
}

.fighter-record {
  font-size: 12px;
  color: var(--ba-muted);
  letter-spacing: 1px;
  text-align: center;
  font-family: var(--ba-font-ui);
}

.fighter-country {
  font-size: 18px;
  margin-top: -4px;
}

.vs-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.vs-text {
  font-family: var(--ba-font-display);
  font-size: 28px;
  color: var(--ba-muted);
  letter-spacing: 2px;
}
.vs-weight {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-gold);
  font-family: var(--ba-font-ui);
}

.odds-section {
  padding: 16px 20px;
  border-top: 1px solid var(--ba-border);
}
.odds-label {
  font-family: var(--ba-font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-muted);
  margin-bottom: 10px;
}
.odds-bar {
  height: 6px;
  background: var(--ba-surface);
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.odds-fill-a {
  height: 100%;
  background: var(--ba-red-hot);
  transition: width 0.6s ease;
}
.odds-fill-b {
  height: 100%;
  background: var(--ba-blue);
  flex: 1;
}
.odds-row {
  display: flex;
  justify-content: space-between;
}
.odds-val {
  font-family: var(--ba-font-ui);
  font-weight: 700;
  font-size: 18px;
}
.odds-val.red  { color: var(--ba-red-hot); }
.odds-val.blue { color: var(--ba-blue); }
.odds-pct { font-size: 11px; color: var(--ba-muted); letter-spacing: 1px; font-family: var(--ba-font-ui); }

.fight-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--ba-border);
}
.meta-item {
  padding: 12px 16px;
  border-right: 1px solid var(--ba-border);
}
.meta-item:last-child { border-right: none; }
.meta-key {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-muted);
  font-family: var(--ba-font-ui);
  margin-bottom: 4px;
}
.meta-val {
  font-family: var(--ba-font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--ba-text);
  letter-spacing: .5px;
}

/* =========================================================
   STAT BARS
   ========================================================= */
.stat-bars { display: flex; flex-direction: column; gap: 14px; }
.stat-bar-row { display: flex; flex-direction: column; gap: 6px; }
.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ba-muted);
  font-family: var(--ba-font-ui);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.bar-track {
  height: 8px;
  background: var(--ba-surface);
  position: relative;
  display: flex;
}
.bar-fill {
  height: 100%;
  transition: width 0.8s ease;
}
.bar-fill.red  { background: linear-gradient(90deg, var(--ba-red-hot), var(--ba-red)); }
.bar-fill.blue { background: linear-gradient(90deg, var(--ba-blue), #1A6B99); }
.bar-fill.gold { background: linear-gradient(90deg, var(--ba-gold), var(--ba-gold-bright)); }

/* =========================================================
   FIGHTS TABLE
   ========================================================= */
.fights-table {
  border: 1px solid var(--ba-border);
  margin-top: 40px;
}
.table-head {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr 1fr 1fr;
  padding: 12px 24px;
  background: var(--ba-surface);
  border-bottom: 1px solid var(--ba-border);
}
.th {
  font-family: var(--ba-font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-muted);
  font-weight: 600;
}
.table-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  align-items: center;
  transition: background var(--ba-transition);
  cursor: pointer;
}
.table-row:last-child { border-bottom: none; }
.table-row:hover { background: rgba(201,168,76,0.04); }

.fighter-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fighter-mini-avatar {
  width: 36px;
  height: 36px;
  background: var(--ba-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ba-font-display);
  font-size: 13px;
  color: var(--ba-gold);
  flex-shrink: 0;
  border: 1px solid var(--ba-border);
  overflow: hidden;
}
.fighter-mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.fighter-mini-name   { font-weight: 500; font-size: 14px; color: var(--ba-text); }
.fighter-mini-record { font-size: 12px; color: var(--ba-muted); font-family: var(--ba-font-ui); letter-spacing: 0.5px; }

.td-weight { font-family: var(--ba-font-ui); font-size: 13px; letter-spacing: 1px; color: var(--ba-muted); }
.td-date   { font-size: 13px; color: var(--ba-muted); font-family: var(--ba-font-ui); }
.td-odds   { font-family: var(--ba-font-ui); font-weight: 700; font-size: 16px; }
.td-odds.fav  { color: var(--ba-red-hot); }
.td-odds.dog  { color: var(--ba-blue); }

/* =========================================================
   PREDICTION CARD
   ========================================================= */
.pred-card {
  background: var(--ba-bg3);
  border: 1px solid var(--ba-border);
  padding: 32px;
}
.pred-title {
  font-family: var(--ba-font-ui);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ba-muted);
  margin-bottom: 24px;
}
.pred-fighters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.pred-fighter-name {
  font-family: var(--ba-font-display);
  font-size: 28px;
  letter-spacing: 1px;
}
.pred-fighter-name.red  { color: var(--ba-red-hot); }
.pred-fighter-name.blue { color: #4A9FD4; }
.pred-winner-box {
  background: var(--ba-surface);
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  border-left: 3px solid var(--ba-gold);
}
.pred-winner-label {
  font-family: var(--ba-font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ba-gold);
  margin-bottom: 8px;
}
.pred-winner-name {
  font-family: var(--ba-font-display);
  font-size: 40px;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--ba-red-hot);
}
.pred-winner-method {
  font-size: 13px;
  color: var(--ba-muted);
  margin-top: 4px;
  font-family: var(--ba-font-ui);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pred-outcomes { display: flex; flex-direction: column; gap: 10px; }
.outcome-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--ba-surface);
  border-left: 3px solid transparent;
}
.outcome-row.top { border-left-color: var(--ba-gold); }
.outcome-label {
  font-family: var(--ba-font-ui);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ba-muted);
}
.outcome-pct {
  font-family: var(--ba-font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--ba-gold);
}

/* =========================================================
   FEATURES STRIP
   ========================================================= */
.features-strip {
  background: var(--ba-bg2);
  border-top: 1px solid var(--ba-border);
  border-bottom: 1px solid var(--ba-border);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.features-strip::-webkit-scrollbar { display: none; }

.feature-chip {
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--ba-border);
  white-space: nowrap;
  flex-shrink: 0;
}
.chip-icon { font-size: 20px; }
.chip-text {
  font-family: var(--ba-font-ui);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ba-muted);
  font-weight: 600;
}
.chip-text strong { color: var(--ba-text); font-weight: 700; }

/* =========================================================
   TICKER
   ========================================================= */
.ba-ticker {
  background: var(--ba-red-hot);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}
.ba-ticker-track {
  display: flex;
  animation: ba-ticker 32s linear infinite;
  white-space: nowrap;
}
.ba-ticker-item {
  padding: 0 32px;
  font-family: var(--ba-font-ui);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.2);
  height: 36px;
}
.ba-ticker-item span { color: rgba(255,255,255,0.6); }

/* =========================================================
   HERO BADGE
   ========================================================= */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ba-font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ba-gold);
  border: 1px solid var(--ba-border);
  padding: 6px 14px;
  width: fit-content;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ba-red-hot);
  border-radius: 50%;
  animation: ba-pulse 2s infinite;
}

/* =========================================================
   STATS BAR (Hero bottom)
   ========================================================= */
.ba-stats-row {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--ba-border);
}
.ba-stat-item .stat-num {
  font-family: var(--ba-font-display);
  font-size: 36px;
  color: var(--ba-gold);
  letter-spacing: 1px;
  line-height: 1;
}
.ba-stat-item .stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-muted);
  margin-top: 4px;
  font-family: var(--ba-font-ui);
}

/* =========================================================
   FEATURE LIST (Prediction section)
   ========================================================= */
.ba-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.ba-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ba-feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  border: 1px solid var(--ba-border);
}
.ba-feature-icon.red  { background: rgba(192,57,43,0.15);  border-color: rgba(192,57,43,0.3);  }
.ba-feature-icon.gold { background: rgba(201,168,76,0.10);  border-color: var(--ba-border);     }
.ba-feature-icon.blue { background: rgba(41,128,185,0.10); border-color: rgba(41,128,185,0.3); }
.ba-feature-title {
  font-family: var(--ba-font-ui);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ba-text);
}
.ba-feature-desc { font-size: 13px; color: var(--ba-muted); }

/* =========================================================
   WORDPRESS CORE ALIGNMENT
   ========================================================= */
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.alignwide  { margin-left: -40px; margin-right: -40px; }
.alignfull  { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--ba-muted); margin-top: 8px; }

.sticky { position: relative; }

/* =========================================================
   ELEMENTOR COMPATIBILITY
   ========================================================= */
.elementor-section.elementor-section-full_width .elementor-section-wrap,
.elementor-section.elementor-section-full_width > .elementor-container {
  max-width: 100%;
}

.elementor-editor-active .site-header {
  position: relative !important;
  top: auto !important;
}

/* =========================================================
   COMMENTS
   ========================================================= */
.comment-list, .comment-form { margin-top: 40px; }
.comment-reply-title, .comments-title {
  font-family: var(--ba-font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--ba-text);
  margin-bottom: 20px;
}
.comment-body {
  background: var(--ba-bg3);
  border: 1px solid var(--ba-border);
  padding: 20px;
  margin-bottom: 16px;
}
.comment-author { font-family: var(--ba-font-ui); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.comment-metadata { font-size: 12px; color: var(--ba-muted); margin-top: 4px; }
.comment-content { margin-top: 12px; font-size: 14px; line-height: 1.7; }
.reply { margin-top: 8px; }
.reply a {
  font-family: var(--ba-font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-gold);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  background: var(--ba-surface);
  border: 1px solid var(--ba-border);
  color: var(--ba-text);
  padding: 12px 16px;
  width: 100%;
  font-size: 14px;
  outline: none;
  transition: border-color var(--ba-transition);
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--ba-gold);
}

/* =========================================================
   PAGINATION
   ========================================================= */
.navigation, .page-numbers {
  margin: 40px 0;
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--ba-font-ui);
}
.page-numbers a, .page-numbers span {
  padding: 8px 14px;
  border: 1px solid var(--ba-border);
  color: var(--ba-muted);
  font-size: 13px;
  letter-spacing: 1px;
  transition: all var(--ba-transition);
}
.page-numbers a:hover,
.page-numbers .current {
  border-color: var(--ba-gold);
  color: var(--ba-gold);
  background: rgba(201,168,76,0.07);
}

/* =========================================================
   KEYFRAME ANIMATIONS
   ========================================================= */
@keyframes ba-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes ba-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ba-pulse {
  0%, 100% { opacity: 1; transform: scale(1);   }
  50%       { opacity: .5; transform: scale(1.4); }
}
@keyframes ba-ticker {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}
@keyframes ba-slideIn {
  from { transform: translateX(-20px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.ba-text-gold    { color: var(--ba-gold); }
.ba-text-red     { color: var(--ba-red-hot); }
.ba-text-blue    { color: var(--ba-blue); }
.ba-text-muted   { color: var(--ba-muted); }
.ba-bg-dark      { background: var(--ba-bg);   }
.ba-bg-dark2     { background: var(--ba-bg2);  }
.ba-bg-surface   { background: var(--ba-surface); }
.ba-border-gold  { border-color: var(--ba-border); }
.ba-hidden       { display: none !important; }
.ba-animate-up   { animation: ba-fadeUp 0.6s ease both; }

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* Tablet — ≤ 1200px */
@media (max-width: 1200px) {
  .ba-container,
  .ba-section     { padding-left: 40px; padding-right: 40px; }
}

/* Mobile-tablet — ≤ 900px */
@media (max-width: 900px) {
  .ba-container,
  .ba-section     { padding-left: 24px; padding-right: 24px; }

  .features-strip { padding: 0; }

  .fights-table .table-head,
  .fights-table .table-row {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .fights-table .th:nth-child(n+4),
  .fights-table .table-row > *:nth-child(n+4) { display: none; }

  .ba-stats-row { gap: 24px; flex-wrap: wrap; }
}

/* Mobile — ≤ 600px */
@media (max-width: 600px) {
  .ba-section { padding: 48px 20px; }

  .fight-matchup { gap: 10px; }
  .fighter-avatar { width: 56px; height: 56px; font-size: 16px; }
  .vs-text { font-size: 22px; }

  .fights-table .table-head,
  .fights-table .table-row {
    grid-template-columns: 1fr 1fr;
  }
  .fights-table .th:nth-child(n+3),
  .fights-table .table-row > *:nth-child(n+3) { display: none; }

  .pred-fighter-name { font-size: 20px; }
  .pred-winner-name  { font-size: 30px; }

  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-disclaimer { text-align: center; }
}
