/* ==========================================================================
   INDIAN PROFESSIONAL BOXING ASSOCIATION (IPBA) - OFFICIAL STYLESHEET
   Design System: World-Class Sanctioning Authority (Carbon Onyx, Title Gold, Champion Crimson)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* Core Championship Palette */
  --bg-darkest: #05080E;         /* Deepest Carbon Onyx */
  --bg-dark: #0A0F1D;            /* Navy Dark Carbon */
  --bg-card: #0F172A;            /* Slate Dark Card */
  --bg-card-hover: #162238;      /* Elevated Interactive Card */
  --bg-surface: #0B1224;         /* Institutional Surface */
  --bg-glass: rgba(15, 23, 42, 0.85);

  /* Metallic Title Belts & Championship Accents */
  --gold: #F59E0B;               /* Primary Title Gold */
  --gold-bright: #FBBF24;
  --gold-metallic: linear-gradient(135deg, #FFF176 0%, #F59E0B 40%, #D97706 70%, #92400E 100%);
  --gold-metallic-soft: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.05) 100%);
  --gold-glow: rgba(245, 158, 11, 0.45);

  /* Champion Crimson */
  --crimson: #E50914;            /* Aggressive Champion Crimson */
  --crimson-dark: #990000;
  --crimson-metallic: linear-gradient(135deg, #FF334B 0%, #E50914 50%, #8B0000 100%);
  --crimson-glow: rgba(229, 9, 20, 0.45);

  /* Institutional Navy & Allied Colors */
  --navy: #00183D;               /* IPBA Seal Navy */
  --blue-corner: #2563EB;        /* Blue Corner */
  --emerald: #10B981;            /* Verified Sanction Green */
  --emerald-glow: rgba(16, 185, 129, 0.35);

  /* Typography Colors */
  --text-white: #FFFFFF;
  --text-light: #F8FAFC;
  --text-muted-light: #94A3B8;
  --text-dim: #64748B;
  --text-dark: #0F172A;

  /* Typography Font Stacks */
  --font-display: 'Bebas Neue', 'Montserrat', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Borders & Shadows */
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.35);
  --border-crimson: rgba(229, 9, 20, 0.35);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 0 25px rgba(245, 158, 11, 0.25);
  --shadow-crimson: 0 0 25px rgba(229, 9, 20, 0.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-darkest);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* ==========================================================================
   TYPOGRAPHY & ACCENTS
   ========================================================================== */
.font-display {
  font-family: var(--font-display);
  letter-spacing: 1px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.display-title {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
}

.text-gold {
  color: var(--gold) !important;
}

.text-gold-metallic {
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-crimson {
  color: var(--crimson) !important;
}

.text-emerald {
  color: var(--emerald) !important;
}

/* ==========================================================================
   CONTAINERS & SECTIONS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 85px 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark);
}

.section-darker {
  background-color: var(--bg-darkest);
}

.section-surface {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-pill-red {
  color: #FF6B6B;
  background: rgba(229, 9, 20, 0.12);
  border-color: rgba(229, 9, 20, 0.35);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-desc {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted-light);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Page Banner Standard */
.page-banner {
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 60%),
              linear-gradient(180deg, #05080E 0%, #0D1322 100%);
  padding: 70px 0;
  color: #fff;
  border-bottom: 3px solid var(--crimson);
  text-align: center;
  position: relative;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-crimson {
  background: var(--crimson-metallic);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.45);
}
.btn-crimson:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-crimson);
}

.btn-gold {
  background: var(--gold-metallic);
  color: #0A0E1A;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}
.btn-gold:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--bg-darkest);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}
.badge-tag-sanctioned {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.badge-tag-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.badge-tag-red {
  background: rgba(229, 9, 20, 0.15);
  color: #FF6B6B;
  border: 1px solid rgba(229, 9, 20, 0.35);
}

/* ==========================================================================
   TOP BAR & MARQUEE TICKER
   ========================================================================== */
.top-header-bar {
  background: #020408;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 0;
  font-size: 0.8rem;
  position: relative;
  z-index: 1001;
}
.top-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 260px;
}
.ticker-text-content {
  color: #F1F5F9;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
}
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--crimson);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 12px var(--crimson-glow);
  flex-shrink: 0;
}
.live-indicator::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}
.top-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted-light);
  font-size: 0.8rem;
}
.top-gov-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #E2E8F0;
  letter-spacing: 0.4px;
}
.top-divider {
  color: rgba(255, 255, 255, 0.2);
}
.top-hotline, .top-email {
  font-weight: 600;
  font-size: 0.78rem;
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
}
.top-hotline:hover, .top-email:hover {
  color: var(--gold);
}
.top-social-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.top-social-group a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  font-size: 0.74rem;
  transition: var(--transition);
}
.top-social-group a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #05080E;
  transform: translateY(-2px);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ==========================================================================
   MAIN NAVIGATION HEADER (STICKY / FIXED)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 10, 20, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.5) 20%, rgba(229, 9, 20, 0.85) 50%, rgba(245, 158, 11, 0.5) 80%, transparent 100%) 1;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.55);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header.scrolled {
  background: rgba(4, 7, 14, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.9);
  border-bottom-color: rgba(245, 158, 11, 0.4);
}
.main-header.scrolled .header-container {
  padding: 8px 0;
}
.main-header.scrolled .brand-crest-frame {
  width: 44px;
  height: 44px;
}
.main-header.scrolled .brand-main-title {
  font-size: 1.85rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  transition: padding 0.3s ease;
}

/* Brand Insignia Lockup */
.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}
.brand-crest-frame {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #192644 0%, #060B18 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.45), inset 0 0 8px rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.brand-wrapper:hover .brand-crest-frame {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.65), inset 0 0 12px rgba(245, 158, 11, 0.35);
}
.brand-crest-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.brand-title-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-main-title {
  font-family: var(--font-display);
  font-size: 2.15rem;
  letter-spacing: 1.5px;
  line-height: 0.88;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: font-size 0.3s ease;
}
.brand-main-title span {
  color: var(--crimson);
  text-shadow: 0 0 15px var(--crimson-glow);
}
.brand-sub-title {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-top: 3px;
  line-height: 1;
}
.brand-authority-pill {
  font-family: var(--font-heading);
  font-size: 0.54rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

/* Primary Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.mobile-drawer-header,
.mobile-drawer-footer {
  display: none;
}
.nav-menu-item {
  position: relative;
}
.nav-menu-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #E2E8F0;
  border-radius: 6px;
  position: relative;
  transition: var(--transition);
}
.nav-menu-link:hover, .nav-menu-item.active > .nav-menu-link {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}
.nav-menu-item.active > .nav-menu-link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 12px;
  right: 12px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  box-shadow: 0 0 10px var(--gold-glow);
  border-radius: 2px;
}
.nav-link-highlight {
  color: var(--gold) !important;
  background: rgba(245, 158, 11, 0.12) !important;
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
  border-radius: 6px;
}
.nav-link-highlight:hover {
  background: rgba(245, 158, 11, 0.22) !important;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.45);
  transform: translateY(-1px);
}

.nav-menu-link i.fa-angle-down {
  font-size: 0.68rem;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-menu-item:hover > .nav-menu-link i.fa-angle-down {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Menus */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 290px;
  background: rgba(9, 15, 29, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(245, 158, 11, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}
.nav-menu-item:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  padding: 11px 20px;
  color: #CBD5E1;
  font-size: 0.85rem;
  font-weight: 600;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.nav-dropdown a:hover {
  background: rgba(229, 9, 20, 0.12);
  color: #FFFFFF;
  border-left-color: var(--crimson);
  padding-left: 24px;
}

/* Header Actions & CTA Group */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-cta {
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 18px rgba(229, 9, 20, 0.45);
  border-radius: 6px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(229, 9, 20, 0.65);
  filter: brightness(1.1);
}

.btn-search-trigger {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #F1F5F9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}
.btn-search-trigger:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #FFFFFF;
  box-shadow: 0 0 16px var(--crimson-glow);
  transform: scale(1.05);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

/* Backdrop Overlay for Mobile Drawer */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1040;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO STAGE: FIGHT NIGHT & COUNTDOWN
   ========================================================================== */
.hero-stage {
  position: relative;
  min-height: 720px;
  background: radial-gradient(circle at 75% 25%, rgba(229, 9, 20, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.14) 0%, transparent 60%),
              linear-gradient(180deg, rgba(5, 8, 14, 0.88) 0%, rgba(10, 15, 29, 0.98) 100%),
              url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?q=80&w=1600') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 85px 0 65px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-lead-box {
  position: relative;
  z-index: 2;
}

.hero-super-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-fight-title {
  font-family: var(--font-display);
  font-size: 4.8rem;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-fight-title span.strike {
  color: var(--crimson);
  text-shadow: 0 0 30px var(--crimson-glow);
}
.hero-fight-title span.gold {
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow);
}

.hero-lead-text {
  font-size: 1.15rem;
  color: var(--text-muted-light);
  line-height: 1.65;
  margin-bottom: 35px;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Stats Counter Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
}
.stat-card {
  text-align: center;
  padding: 5px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-card:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Fight Card Live Countdown Card */
.fight-marquee-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.fight-marquee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-metallic);
}

.fight-marquee-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.faceoff-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0;
  text-align: center;
}
.fighter-corner {
  flex: 1;
}
.fighter-corner-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  color: #fff;
}
.fighter-corner-record {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}
.vs-badge {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--crimson);
  padding: 0 15px;
  text-shadow: 0 0 20px var(--crimson-glow);
}

/* Countdown Timer Grid */
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid var(--border-dark);
}
.timer-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}
.timer-lbl {
  font-size: 0.65rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* ==========================================================================
   SANCTION VERIFICATION QUICK SEARCH WIDGET
   ========================================================================== */
.sanction-lookup-bar {
  background: #0B111F;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 24px 0;
}
.sanction-lookup-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
}
.sanction-lookup-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
}
.sanction-input-group {
  display: flex;
  gap: 10px;
}
.sanction-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  color: #fff;
  font-size: 0.9rem;
}
.sanction-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   TALE OF THE TAPE COMPONENT
   ========================================================================== */
.tale-of-tape-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-lg);
}
.tot-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  text-align: center;
}
.tot-row:last-child {
  border-bottom: none;
}
.tot-metric {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}
.tot-val-left {
  text-align: left;
  font-weight: 700;
  color: #fff;
}
.tot-val-right {
  text-align: right;
  font-weight: 700;
  color: #fff;
}

/* ==========================================================================
   17 UNIFIED CHAMPIONSHIP TITLE BELTS SHOWCASE
   ========================================================================== */
.belts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.belt-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.belt-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.belt-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-metallic);
}
.belt-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.belt-division-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.belt-weight-limit {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  margin-bottom: 14px;
}
.belt-champ-info {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: auto;
  border-left: 3px solid var(--gold);
}

/* ==========================================================================
   POUND-FOR-POUND (P4P) LEADERBOARD
   ========================================================================== */
.p4p-table-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.p4p-row {
  display: grid;
  grid-template-columns: 80px 1.5fr 1fr 1fr 120px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-dark);
  align-items: center;
  font-size: 0.95rem;
}
.p4p-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.p4p-header {
  background: #070B14;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.p4p-rank {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}

/* ==========================================================================
   10-POINT MUST SCORING SIMULATOR
   ========================================================================== */
.scoring-sim-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-lg);
}
.scoring-round-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  border: 1px solid var(--border-dark);
}
.scoring-score-select {
  background: #0B111F;
  border: 1px solid var(--border-dark);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* ==========================================================================
   DIGITAL BOXER PASS & LICENSE CARD GENERATOR
   ========================================================================== */
.license-card-preview {
  background: linear-gradient(135deg, #0A0F1D 0%, #151D30 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto;
}
.license-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.license-hologram-seal {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--gold-metallic);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.4rem;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}
.license-card-body {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: center;
}
.license-avatar-box {
  width: 110px;
  height: 130px;
  background: #070B14;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   FORMS & PORTAL
   ========================================================================== */
.form-portal-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-dark);
  overflow: hidden;
}

.role-switcher-bar {
  display: flex;
  background: #070B14;
  overflow-x: auto;
  border-bottom: 1px solid var(--border-dark);
}
.role-tab-btn {
  flex: 1;
  min-width: 160px;
  padding: 18px 15px;
  background: transparent;
  border: none;
  color: var(--text-muted-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.role-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}
.role-tab-btn.active {
  color: #fff;
  background: rgba(229, 9, 20, 0.15);
  border-bottom-color: var(--crimson);
}

.portal-form-body {
  padding: 40px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  padding: 13px 16px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.file-dropzone {
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: var(--transition);
}
.file-dropzone:hover {
  background: rgba(245, 158, 11, 0.05);
  border-color: var(--gold);
}
.file-dropzone i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ==========================================================================
   WEIGHT DIVISIONS & CALCULATOR
   ========================================================================== */
.weight-calc-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-bottom: 50px;
  border: 1px solid var(--border-gold);
}
.calc-header {
  text-align: center;
  margin-bottom: 30px;
}
.calc-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: flex-end;
  max-width: 700px;
  margin: 0 auto 30px;
}
.calc-result-badge {
  display: none;
  background: #05080E;
  border: 2px solid var(--gold);
  color: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
}
.calc-result-badge.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.weight-divisions-table-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-dark);
}
.divisions-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.divisions-table th {
  background: #070B14;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 20px;
}
.divisions-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.92rem;
}
.divisions-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   PRO BOXING LEAGUE (PBL) SPOTLIGHT
   ========================================================================== */
.pbl-banner {
  background: linear-gradient(135deg, #070B14 0%, #111827 100%);
  border-top: 3px solid var(--crimson);
  border-bottom: 3px solid var(--gold);
  padding: 75px 0;
  position: relative;
  overflow: hidden;
}
.pbl-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.pbl-teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pbl-team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.pbl-team-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

/* ==========================================================================
   NEWS & ARTICLE CARDS
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-crimson);
}
.news-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #070B14;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-thumb img {
  transform: scale(1.06);
}
.news-category-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--crimson);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}
.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-muted-light);
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.news-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.news-card:hover .news-title {
  color: var(--gold);
}
.news-excerpt {
  color: var(--text-muted-light);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.news-footer {
  border-top: 1px solid var(--border-dark);
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #070B14;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 14, 0.9) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #030509;
  color: var(--text-muted-light);
  border-top: 3px solid var(--crimson);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-widget h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-widget h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--crimson);
  border-radius: 2px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.footer-bottom {
  background: #020306;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: #64748B;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 14, 0.9);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  transform: scale(0.95);
  transition: var(--transition);
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}
.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: var(--transition);
}
.modal-close-btn:hover {
  background: var(--crimson);
}

/* Back to Top */
#btn-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--crimson);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
#btn-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
#btn-scroll-top:hover {
  transform: translateY(-4px);
  background: var(--crimson-dark);
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

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