/* ==========================================================================
   SportsBettingOnline.org - Clean, Modern Sports Platform Stylesheet
   Pure Static CSS • Zero JavaScript • Ultra-Fast & Scan-Friendly
   Domain: https://sportsbettingonline.org/
   ========================================================================== */

:root {
  /* ------------------------------------------------------------------------
     1. COLOR SYSTEM (SportsBettingOnline.org Clean Sports Platform Palette)
     ------------------------------------------------------------------------ */
  /* Dark Header, Hero & Footer Backgrounds */
  --bg-dark-header: #0f1012;
  --bg-dark-surface: #15171b;
  --bg-dark-card: #1b1e24;
  --bg-dark-hover: #22262e;
  --bg-footer: #0c0d0f;

  /* Light Body & Clean Content Cards */
  --bg-body: #f4f5f8;
  --bg-white: #ffffff;
  --bg-card-subtle: #f9fafb;

  /* Accent Colors (Inspired by Sports Platform Reference) */
  --accent-gold: #ffb000;
  --accent-gold-hover: #e69d00;
  --accent-gold-light: rgba(255, 176, 0, 0.15);
  --accent-orange: #f4a300;
  --accent-orange-dark: #d97706;
  --accent-lime: #c7f000;
  --accent-lime-hover: #b2d800;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-blue: #2563eb;

  /* Typography Colors */
  --text-main: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --text-white: #ffffff;
  --text-light-muted: #bdbdbd;

  /* Borders & Dividers */
  --border-light: #e2e4e8;
  --border-subtle: #f0f1f4;
  --border-dark: #2a2d35;
  --border-dark-subtle: #1e2128;

  /* Sizing & Metrics */
  --font-stack: Arial, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max: 1240px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-pill: 50px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.4);

  /* ------------------------------------------------------------------------
     Live Match Background Images (CSS Custom Properties per Sport)
     Assign URLs via :root, class, or inline style="--sport-bg-football: url(...)"
     ------------------------------------------------------------------------ */
  --sport-bg-football: none;
  --sport-bg-basketball: none;
  --sport-bg-tennis: none;
  --sport-bg-baseball: none;
  --sport-bg-esports: none;
  --sport-bg-afl: none;
  --sport-bg-mma: none;
  --sport-bg-hockey: none;
  --sport-bg-nfl: none;
  --sport-bg-rugby: none;
  --sport-bg-volleyball: none;
  --sport-bg-handball: none;
  --sport-bg-formula1: none;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-stack);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.5;
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-body);
  overflow-x: clip;
}

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

a {
  color: #0f52ba;
  text-decoration: none;
  transition: all 0.15s ease;
}

a:hover {
  color: #003399;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. LAYOUT CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* --------------------------------------------------------------------------
   4. CLEAN DARK HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  background-color: var(--bg-dark-header);
  border-bottom: 1px solid var(--border-dark);
  height: 56px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
}

/* SportsBettingOnline.org Brand Logo */
.brand-group {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 145px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.footer-brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.brand-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand-logo .dot-vip {
  color: var(--accent-gold);
}

/* Center Horizontal Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 56px;
}

.desktop-nav > a,
.desktop-nav .nav-dropdown-toggle {
  color: #cccccc;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 0 10px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.desktop-nav > a:hover,
.desktop-nav .nav-item-dropdown:hover > .nav-dropdown-toggle,
.desktop-nav .nav-item-dropdown:focus-within > .nav-dropdown-toggle {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
}

.desktop-nav > a.active,
.desktop-nav .nav-dropdown-toggle.active {
  color: #ffffff;
  background-color: rgba(255, 176, 0, 0.08);
}

.desktop-nav > a.active::after,
.desktop-nav .nav-dropdown-toggle.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--accent-gold);
}

/* Nav Item Dropdown */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 56px;
}

.dropdown-chevron {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown:focus-within .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--accent-gold);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 175px;
  background-color: #13161f;
  border: 1px solid #282f42;
  border-top: 2px solid var(--accent-gold);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  padding: 6px 0;
  z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.desktop-nav .nav-dropdown-menu a {
  display: block;
  padding: 9px 16px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  height: auto;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  transition: background-color 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.desktop-nav .nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.desktop-nav .nav-dropdown-menu a:hover {
  background-color: #1a202d;
  color: var(--accent-gold);
  padding-left: 20px;
}

/* Header Right Action Buttons (Login & Register) */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #3d4352;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
  line-height: 1.2;
}

.btn-header-login:hover {
  border-color: #646d82;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
}

.btn-header-register,
.btn-header-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffbe1a 0%, #f4a300 100%);
  color: #0b0c0e;
  border: 1px solid #d98a00;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(244, 163, 0, 0.35);
  transition: all 0.15s ease;
  line-height: 1.2;
}

.btn-header-register:hover,
.btn-header-play:hover {
  background: #ffb000;
  color: #000000;
  box-shadow: 0 3px 10px rgba(244, 163, 0, 0.5);
  transform: translateY(-1px);
  text-decoration: none;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
  background-color: #1c1f26;
  color: #ffffff;
  border: 1px solid var(--border-dark);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  user-select: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 250px;
  max-width: calc(100vw - 24px);
  background-color: #12151d;
  border: 1px solid #282f40;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 1px rgba(255, 176, 0, 0.25);
  padding: 4px 0;
  z-index: 1000;
  overflow: hidden;
  animation: mobileDropdownFadeIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mobileDropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-dropdown a {
  display: block;
  padding: 10px 16px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-dark-subtle);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.mobile-dropdown a:hover,
.mobile-dropdown a.active {
  background-color: var(--bg-dark-card);
  color: var(--accent-gold);
}

/* Mobile Dropdown Groups (Accordion) */
.mobile-nav-group {
  border-bottom: 1px solid var(--border-dark-subtle);
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.mobile-nav-toggle::-webkit-details-marker,
.mobile-nav-toggle::marker {
  display: none;
}

.mobile-nav-toggle:hover {
  background-color: var(--bg-dark-card);
  color: var(--accent-gold);
}

.mobile-nav-group[open] .mobile-nav-toggle {
  color: var(--accent-gold);
  background-color: rgba(255, 176, 0, 0.08);
}

.mobile-nav-chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  color: #94a3b8;
}

.mobile-nav-toggle:hover .mobile-nav-chevron,
.mobile-nav-group[open] .mobile-nav-chevron {
  color: var(--accent-gold);
  transform: rotate(180deg);
}

.mobile-submenu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 8px 12px 10px;
}

.mobile-sublink {
  display: block !important;
  padding: 6px 10px !important;
  color: #94a3b8 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.mobile-sublink:hover {
  color: var(--accent-gold) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
}

.mobile-sublink-all {
  grid-column: 1 / -1;
  text-align: center;
  font-weight: 700 !important;
  color: var(--accent-gold) !important;
  background-color: rgba(255, 176, 0, 0.08) !important;
  border: 1px solid rgba(255, 176, 0, 0.2) !important;
  margin-bottom: 3px;
}

.mobile-sublist {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 4px 0;
}

.mobile-sublist .mobile-sublink {
  display: flex !important;
  align-items: center;
  padding: 8px 20px !important;
  font-size: 12.5px !important;
  color: #cbd5e1 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 0;
}

.mobile-sublist .mobile-sublink:last-child {
  border-bottom: none !important;
}

.mobile-sublist .mobile-sublink:hover {
  color: var(--accent-gold) !important;
  background-color: rgba(255, 176, 0, 0.06) !important;
  padding-left: 24px !important;
}

.mobile-dropdown-heading {
  padding: 8px 16px 4px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background-color: rgba(255, 176, 0, 0.04);
  border-bottom: 1px solid var(--border-dark-subtle);
}

.mobile-dropdown-auth {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  margin-top: 4px;
  border-top: 1px solid var(--border-dark);
}

.mobile-auth-login {
  flex: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  border: 1px solid #3d4352 !important;
  border-radius: var(--radius-sm);
  color: #ffffff !important;
  background: transparent !important;
  text-transform: uppercase;
}

.mobile-auth-register {
  flex: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  border-radius: var(--radius-sm);
  color: #0b0c0e !important;
  background: linear-gradient(180deg, #ffbe1a 0%, #f4a300 100%) !important;
  border: 1px solid #d98a00 !important;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   MOBILE STICKY BOTTOM ACTION BAR (PLAY NOW & REGISTER NOW)
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(15, 16, 18, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid #262930;
  padding: 8px 14px calc(8px + env(safe-area-inset-bottom, 0px)) 14px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.mobile-sticky-btn {
  flex: 1 1 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.1s ease, filter 0.15s ease, background-color 0.15s ease;
  user-select: none;
}

.mobile-sticky-btn:active {
  transform: scale(0.98);
}

/* PLAY NOW / LOGIN Button */
.mobile-btn-play,
.mobile-btn-login {
  background-color: #1e2128;
  color: #ffffff;
  border: 1px solid #383c48;
}

.mobile-btn-play:hover,
.mobile-btn-login:hover {
  background-color: #282d38;
  color: #ffffff;
  border-color: #4a5060;
}

/* REGISTER NOW Button */
.mobile-btn-register {
  background: linear-gradient(180deg, #ffbe1a 0%, #f4a300 100%);
  color: #0b0c0e;
  border: 1px solid #d98a00;
  box-shadow: 0 2px 8px rgba(244, 163, 0, 0.35);
}

.mobile-btn-register:hover {
  background: #ffb000;
  color: #000000;
}

/* --------------------------------------------------------------------------
   5. HERO CAROUSEL SECTION (5 Slides, Autoplay + Manual Navigation)
   -------------------------------------------------------------------------- */
.hero-wrapper {
  background-color: var(--bg-dark-header);
  padding: 16px 0 20px 0;
}

.hero-viewport {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #0b0c0e;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-dark);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.hero-viewport.is-dragging {
  cursor: grabbing;
}

.hero-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-track.no-transition {
  transition: none !important;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  position: relative;
  min-height: 290px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0b0c0e;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.60;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 0.4s ease;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0b0c0e 0%, rgba(11, 12, 14, 0.94) 42%, rgba(11, 12, 14, 0.45) 75%, rgba(11, 12, 14, 0.15) 100%);
  pointer-events: none;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 32px 36px;
  max-width: 680px;
  color: #ffffff;
}

.hero-pill-badge {
  display: none !important;
}

.hero-title {
  margin-top: 0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-title span.accent {
  color: var(--accent-gold);
}

.hero-title span.accent-esports {
  color: var(--accent-green);
}

.hero-title span.accent-odds {
  color: #70b0ff;
}

.hero-subtitle {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: #a0a6b5;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

.microcopy-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.microcopy-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  flex-shrink: 0;
  display: inline-block;
}

.microcopy-icon {
  flex-shrink: 0;
  color: var(--accent-gold);
}

.microcopy-divider {
  color: #4b5262;
  font-size: 10px;
}

/* Controls: 5 Indicators Centered (No Arrows) */
.hero-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background-color: #333742;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
  display: inline-block;
}

.hero-slider-dots .dot.active {
  width: 28px;
  background-color: var(--accent-gold);
}

.hero-slider-dots .dot:hover:not(.active) {
  background-color: #555b6a;
}

.hero-slider-dots .dot:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-track {
    transition: none !important;
  }
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 10px 22px;
  min-height: 44px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  line-height: 1.2;
  white-space: nowrap;
}

.btn .btn-arrow {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #0b0c0e;
  border-color: var(--accent-gold);
  box-shadow: 0 2px 8px rgba(255, 176, 0, 0.35);
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  color: #000000;
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-pill-white {
  background-color: #ffffff;
  color: #111111;
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 15px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  border: 1px solid #ffffff;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-pill-white:hover {
  background-color: #f3f4f6;
  color: #000000;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

/* ==========================================================================
   SPORTS EXPERIENCE CANVAS: GREENISH & ORANGENISH DESIGNED BACKGROUND
   ========================================================================== */
.sports-experience-canvas {
  position: relative;
  overflow: visible;
  background-color: #0b1511;
  background-image:
    /* Diagonal athletic speed mesh */
    repeating-linear-gradient(130deg, rgba(16, 185, 129, 0.045) 0px, rgba(16, 185, 129, 0.045) 1.5px, transparent 1.5px, transparent 32px),
    repeating-linear-gradient(-50deg, rgba(249, 115, 22, 0.038) 0px, rgba(249, 115, 22, 0.038) 1.5px, transparent 1.5px, transparent 32px),
    /* Left Upper Athletic Pitch Glow (Emerald Turf Green) */
    radial-gradient(ellipse 950px 750px at 6% 20%, rgba(16, 185, 129, 0.34) 0%, rgba(5, 150, 105, 0.15) 45%, transparent 75%),
    /* Right Upper Stadium Floodlight (Vibrant Sports Orange) */
    radial-gradient(ellipse 950px 750px at 94% 18%, rgba(255, 115, 0, 0.32) 0%, rgba(234, 88, 12, 0.15) 42%, transparent 72%),
    /* Left Lower Sports Turf Energy (Vivid Green) */
    radial-gradient(ellipse 850px 650px at 5% 82%, rgba(16, 185, 129, 0.28) 0%, rgba(4, 120, 87, 0.12) 50%, transparent 75%),
    /* Right Lower Flame & Amber Lighting (Warm Sports Orange) */
    radial-gradient(ellipse 920px 700px at 95% 82%, rgba(249, 115, 22, 0.28) 0%, rgba(217, 119, 6, 0.11) 48%, transparent 75%),
    /* Center Field Intersecting Light (Lime Green & Warm Amber Glow) */
    radial-gradient(ellipse 800px 420px at 50% 48%, rgba(199, 240, 0, 0.08) 0%, rgba(255, 176, 0, 0.08) 40%, transparent 75%),
    /* Athletic Deep Turf Charcoal Foundation Gradient */
    linear-gradient(180deg, #09130e 0%, #0b1712 20%, #0f1c16 50%, #111a15 80%, #0c1210 100%);
}

.sports-bg-canvas-decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Glowing Green & Orange Transition Border at Top (Under Hero Carousel) */
.sports-bg-glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    rgba(16, 185, 129, 0.2) 0%, 
    #10b981 25%, 
    #ffb000 50%, 
    #ea580c 75%, 
    rgba(234, 88, 12, 0.2) 100%
  );
  box-shadow: 
    0 0 14px rgba(16, 185, 129, 0.55),
    0 0 22px rgba(234, 88, 12, 0.45);
  z-index: 5;
}

/* Ambient Glowing Orbs optimized with zero-cost radial fades */
.sports-ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.88;
}

.orb-emerald-top {
  width: 560px;
  height: 560px;
  top: -80px;
  left: -120px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.40) 0%, rgba(16, 185, 129, 0.22) 30%, rgba(5, 150, 105, 0.08) 55%, transparent 72%);
}

.orb-orange-top {
  width: 600px;
  height: 600px;
  top: -60px;
  right: -140px;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.38) 0%, rgba(249, 115, 22, 0.20) 30%, rgba(234, 88, 12, 0.08) 55%, transparent 72%);
}

.orb-emerald-bottom {
  width: 580px;
  height: 580px;
  bottom: 40px;
  left: -100px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.36) 0%, rgba(16, 185, 129, 0.18) 32%, rgba(5, 150, 105, 0.06) 55%, transparent 72%);
}

.orb-orange-bottom {
  width: 620px;
  height: 620px;
  bottom: 10px;
  right: -120px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.38) 0%, rgba(234, 88, 12, 0.18) 30%, rgba(217, 119, 6, 0.06) 55%, transparent 72%);
}

/* Stadium Vector Overlay */
.sports-stadium-vectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.70;
}

/* Ensure Inner Sections stack cleanly on top of the decorative background */
.sports-experience-canvas .feature-blocks-section,
.sports-experience-canvas .hub-section-wrapper {
  position: relative;
  z-index: 2;
}

.sports-experience-canvas .feature-blocks-section {
  padding: 28px 0 18px 0;
}

.sports-experience-canvas .hub-section-wrapper {
  background-color: transparent;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 16px 0 36px 0;
}

.sports-experience-canvas .hub-quick-panel,
.sports-experience-canvas .live-data-panel,
.sports-experience-canvas .category-panel {
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32), 0 1px 3px rgba(0, 0, 0, 0.12);
}

.sports-experience-canvas .feature-card {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}

/* --------------------------------------------------------------------------
   6. 4 FEATURED VISUAL BLOCKS GRID (Reference Inspired)
   -------------------------------------------------------------------------- */
.feature-blocks-section {
  padding: 24px 0;
}

.feature-blocks-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 165px 165px;
  gap: 14px;
}

/* Base Feature Card */
.feature-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
  text-decoration: none;
}

.feature-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-bg {
  transform: scale(1.03);
}

.feature-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feature-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-tag {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 2px;
  line-height: 1.2;
}

.feature-card-title {
  font-size: 17.5px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.7);
}

.feature-card-desc {
  font-size: 11.5px;
  line-height: 1.35;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95);
  max-width: 95%;
}

.feature-card-action {
  align-self: flex-start;
}

/* Card 1: Large Left Card Slider (4 Interactive Feature Slides) */
.feature-card-left {
  grid-row: 1 / span 2;
  background-color: #121418;
  position: relative;
  overflow: hidden;
  padding: 0;
  display: block;
}

.feature-slider-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.feature-slider-viewport.is-dragging {
  cursor: grabbing;
}

.feature-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.feature-slider-track.no-transition {
  transition: none !important;
}

.feature-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  text-decoration: none;
  box-sizing: border-box;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  background-color: #121418;
}

.feature-slide .feature-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.feature-card-left:hover:not(:has(.is-dragging)) .feature-slide .feature-card-bg {
  transform: scale(1.03);
}

.feature-slider-viewport.is-dragging .feature-card-bg {
  transform: none !important;
  transition: none !important;
}

.feature-slide .feature-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 16, 20, 0.25) 0%, rgba(14, 16, 20, 0.72) 50%, rgba(14, 16, 20, 0.96) 100%);
  pointer-events: none;
}

.feature-slide .feature-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-slide .feature-tag {
  background-color: var(--accent-gold);
  color: #000000;
  font-weight: 800;
}

.feature-slide .feature-card-title {
  font-size: 22px;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.7);
}

.feature-slide .feature-card-desc {
  color: #d1d5db;
  font-size: 12.5px;
  line-height: 1.45;
  margin-bottom: 8px;
  max-width: 320px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95);
}

/* Feature Slider Navigation Dots Indicator */
.feature-slider-controls {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  background: rgba(10, 12, 16, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 9px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: auto;
}

.feature-slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.feature-slider-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 3px;
  background-color: #4a5060;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
  display: inline-block;
}

.feature-slider-dots .dot.active {
  width: 22px;
  background-color: var(--accent-gold);
}

.feature-slider-dots .dot:hover:not(.active) {
  background-color: #8a92a5;
}

.feature-slider-dots .dot:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 1px;
}

/* Card 2: Live Sports (Dark Stadium Theme) */
.feature-card-live {
  background-color: #12100e;
}

.feature-card-live .feature-card-overlay {
  background: linear-gradient(90deg, rgba(10, 12, 16, 0.88) 0%, rgba(10, 12, 16, 0.65) 55%, rgba(10, 12, 16, 0.25) 100%);
}

.feature-card-live .feature-tag {
  background-color: #ff5500;
  color: #ffffff;
  font-weight: 800;
}

.feature-card-live .feature-card-title {
  color: #ffffff;
}

.feature-card-live .feature-card-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Card 3: Odds & Calculations */
.feature-card-odds {
  background-color: #0f141d;
}

.feature-card-odds .feature-card-overlay {
  background: linear-gradient(90deg, rgba(10, 15, 22, 0.92) 0%, rgba(10, 15, 22, 0.70) 55%, rgba(10, 15, 22, 0.35) 100%);
}

.feature-card-odds .feature-tag {
  background-color: #10b981;
  color: #000000;
  font-weight: 800;
}

.feature-card-odds .feature-card-title {
  color: #ffffff;
}

.feature-card-odds .feature-card-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Card 4: Latest Promos */
.feature-card-promos {
  background-color: #15120e;
}

.feature-card-promos .feature-card-overlay {
  background: linear-gradient(90deg, rgba(12, 14, 18, 0.90) 0%, rgba(12, 14, 18, 0.68) 55%, rgba(12, 14, 18, 0.25) 100%);
}

.feature-card-promos .feature-tag {
  background-color: #f59e0b;
  color: #000000;
  font-weight: 800;
}

.feature-card-promos .feature-card-title {
  color: #ffffff;
}

.feature-card-promos .feature-card-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Card 5: Payment Options */
.feature-card-payments {
  background-color: #141210;
}

.feature-card-payments .feature-card-overlay {
  background: linear-gradient(90deg, rgba(12, 14, 18, 0.90) 0%, rgba(12, 14, 18, 0.68) 55%, rgba(12, 14, 18, 0.25) 100%);
}

.feature-card-payments .feature-tag {
  background-color: #eab308;
  color: #000000;
  font-weight: 800;
}

.feature-card-payments .feature-card-title {
  color: #ffffff;
}

.feature-card-payments .feature-card-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* --------------------------------------------------------------------------
   7. SECTION HEADINGS & WRAPPERS
   -------------------------------------------------------------------------- */
.section-wrapper {
  padding: 24px 0;
}

.section-header-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-title {
  font-size: 20px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.4px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.section-title span.indicator {
  color: var(--accent-gold);
}

.section-subtitle {
  font-size: 12.5px;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   8. 3-COLUMN MAIN INFORMATION SECTION (Quick Access | Live Data | Category)
   -------------------------------------------------------------------------- */
.hub-section-wrapper {
  background-color: transparent;
  padding: 16px 0 32px 0;
  border-top: none;
  border-bottom: none;
}

.hub-info-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: start;
}

/* ==========================================================================
   LEFT COLUMN: QUICK ACCESS (Sticky on Desktop)
   ========================================================================== */
.hub-quick-panel,
.quick-access-panel {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 12px 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  align-self: start;
  z-index: 20;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.hub-quick-panel::-webkit-scrollbar,
.quick-access-panel::-webkit-scrollbar {
  width: 4px;
}

.hub-quick-panel::-webkit-scrollbar-thumb,
.quick-access-panel::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.hub-quick-header {
  display: flex;
  align-items: center;
  padding-bottom: 9px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.hub-quick-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #0f172a;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.hub-quick-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 11px;
  background: linear-gradient(180deg, #10b981 0%, #ffb000 100%);
  border-radius: 2px;
  margin-right: 6px;
}

.quick-access-marquee {
  display: block;
}

.quick-access-track {
  display: flex;
  flex-direction: column;
}

.hub-quick-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Hide duplicated ticker track if present */
.hub-quick-nav[aria-hidden="true"] {
  display: none;
}

/* Compact Sport Container Card */
.hub-quick-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  height: 48px;
  min-height: 48px;
  padding: 0 10px;
  background-color: #ffffff;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  user-select: none;
  cursor: pointer;
}

.hub-quick-sport-name {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  position: relative;
  z-index: 2;
  letter-spacing: -0.1px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.hub-quick-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Badges permanently removed for custom background image uploads */
.hub-quick-badge {
  display: none !important;
}

/* Quick Access Card Background Customization Support */
#qa-sport-soccer,
.hub-quick-card[id="qa-sport-soccer"],
.hub-quick-card[data-sport="soccer"] {
  background-image: url('assets/img/soccer.webp');
  background-color: #0b1120;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-color: #94a3b8;
}

#qa-sport-badminton,
.hub-quick-card[id="qa-sport-badminton"],
.hub-quick-card[data-sport="badminton"] {
  background-image: url('assets/img/badminton.webp');
  background-color: #0b1120;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-color: #94a3b8;
}

#qa-sport-basketball,
.hub-quick-card[id="qa-sport-basketball"],
.hub-quick-card[data-sport="basketball"] {
  background-image: url('assets/img/basketball.webp');
  background-color: #0b1120;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-color: #94a3b8;
}

#qa-sport-tennis,
.hub-quick-card[id="qa-sport-tennis"],
.hub-quick-card[data-sport="tennis"] {
  background-image: url('assets/img/tennis.webp');
  background-color: #0b1120;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-color: #94a3b8;
}

#qa-sport-table-tennis,
.hub-quick-card[id="qa-sport-table-tennis"],
.hub-quick-card[data-sport="table-tennis"] {
  background-image: url('assets/img/table-tennis.webp');
  background-color: #0b1120;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-color: #94a3b8;
}

#qa-sport-baseball,
.hub-quick-card[id="qa-sport-baseball"],
.hub-quick-card[data-sport="baseball"] {
  background-image: url('assets/img/baseball.webp');
  background-color: #1e293b;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-color: #94a3b8;
}

#qa-sport-basketball .hub-quick-sport-name,
#qa-sport-soccer .hub-quick-sport-name,
#qa-sport-tennis .hub-quick-sport-name,
#qa-sport-table-tennis .hub-quick-sport-name,
#qa-sport-badminton .hub-quick-sport-name,
#qa-sport-baseball .hub-quick-sport-name,
.hub-quick-card.has-bg .hub-quick-sport-name,
.hub-quick-card[style*="background-image"] .hub-quick-sport-name {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.75);
}

#qa-sport-basketball::before,
#qa-sport-soccer::before,
#qa-sport-tennis::before,
#qa-sport-table-tennis::before,
#qa-sport-badminton::before,
#qa-sport-baseball::before,
.hub-quick-card.has-bg::before,
.hub-quick-card[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.68) 0%, rgba(15, 23, 42, 0.32) 48%, rgba(15, 23, 42, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
}

#qa-sport-soccer:hover,
#qa-sport-football:hover,
#qa-sport-basketball:hover,
#qa-sport-tennis:hover,
#qa-sport-table-tennis:hover,
#qa-sport-badminton:hover,
#qa-sport-baseball:hover {
  border-color: #ea580c;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.22);
}

#qa-sport-basketball:hover .hub-quick-sport-name,
#qa-sport-soccer:hover .hub-quick-sport-name,
#qa-sport-tennis:hover .hub-quick-sport-name,
#qa-sport-table-tennis:hover .hub-quick-sport-name,
#qa-sport-badminton:hover .hub-quick-sport-name,
#qa-sport-baseball:hover .hub-quick-sport-name {
  color: #ffffff;
}

.hub-quick-card[style*="background-image"] .hub-quick-watermark,
.hub-quick-card.has-bg .hub-quick-watermark,
#qa-sport-basketball .hub-quick-watermark,
#qa-sport-soccer .hub-quick-watermark,
#qa-sport-tennis .hub-quick-watermark,
#qa-sport-table-tennis .hub-quick-watermark,
#qa-sport-badminton .hub-quick-watermark,
#qa-sport-baseball .hub-quick-watermark {
  display: none !important;
}

/* Subtle Sport Watermark Graphic */
.hub-quick-watermark {
  position: absolute;
  right: 4px;
  bottom: -4px;
  width: 44px;
  height: 44px;
  pointer-events: none;
  opacity: 0.11;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hub-quick-watermark svg {
  width: 100%;
  height: 100%;
  max-width: 48px;
  max-height: 44px;
  display: block;
}

/* Subtle, Professional Hover Effect */
.hub-quick-card:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.05);
  transform: translateY(-1px);
  text-decoration: none;
}

.hub-quick-card:hover .hub-quick-sport-name {
  color: #0f172a;
}

.hub-quick-card:hover .hub-quick-watermark {
  opacity: 0.16;
  transform: scale(1.04);
}

/* ==========================================================================
   CENTER COLUMN: LIVE DATA AREA (Live Sports, E-Sports, Odds Snapshot)
   ========================================================================== */
.hub-main-data,
.live-data-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Main White Panels */
.live-data-panel,
.hub-data-panel,
.live-panel {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

/* Image Card Modules */
.live-data-panel.is-image {
  border: 1px solid #d9dee5;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.live-data-panel.is-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: #b0c4de;
}

.live-data-panel.is-image::after {
  display: none !important;
}

.hub-img-card-link {
  display: block;
  width: 100%;
  line-height: 0;
  text-decoration: none;
  cursor: pointer;
}

.hub-data-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: contain;
}

/* Subtle Sports Background Graphics in Module Header Area (Watermark Accents) */
.live-sports-module::after,
.esports-module::after,
.odds-module::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  max-height: 220px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  pointer-events: none;
  z-index: 1;
}

.live-sports-module::after {
  background-image:
    linear-gradient(to left, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.85) 45%, #ffffff 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 70%, #ffffff 100%),
    url('assets/img/live-sports-bg.webp');
  opacity: 0.06;
}

.esports-module::after {
  background-image:
    linear-gradient(to left, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.85) 45%, #ffffff 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 70%, #ffffff 100%),
    url('assets/img/esports-data-bg.webp');
  opacity: 0.06;
}

.odds-module::after {
  background-image:
    linear-gradient(to left, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.85) 45%, #ffffff 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 70%, #ffffff 100%),
    url('assets/img/odds-data-bg.webp');
  opacity: 0.05;
}

/* Panel Header & Interactive Layer Stacking */
.live-section-header,
.live-data-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background-color: transparent;
  border-bottom: 1px solid #edf0f3;
}

.section-tabs,
.live-events-list,
.odds-table-wrap,
.odds-panel-footer,
.panel-bottom-cta {
  position: relative;
  z-index: 2;
}

.live-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Small, subtle badge tags - clean, readable, no heavy effects */
.live-badge-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.2;
}

.badge-sports {
  background-color: #ea580c;
  color: #ffffff;
}

.badge-esports {
  background-color: #16a34a;
  color: #ffffff;
}

.badge-odds {
  background-color: #2563eb;
  color: #ffffff;
}

.live-panel-heading {
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0;
  line-height: 1;
}

.live-updated,
.updated-time {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}

/* Small Tabs / Filters Row */
.section-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background-color: transparent;
  border-bottom: 1px solid #edf0f3;
}

.tab-btn {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
  background-color: rgba(241, 245, 249, 0.7);
  color: #64748b;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1.2;
  font-family: inherit;
}

.tab-btn:hover {
  color: #0f172a;
  background-color: #e2e8f0;
}

.tab-btn.active {
  color: #9a3412;
  background-color: #ffedd5;
  border-color: #fed7aa;
}

/* Clean Row-Based Matches List inside one main panel */
.live-events-list {
  display: flex;
  flex-direction: column;
}

/* Match Group Row with subtle dividers and Custom Background Image Support */
.match-group,
.live-match-group,
.live-match,
.live-event,
.esports-match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-bottom: 1px solid #edf0f3;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  background-color: var(--match-bg-color, #ffffff);
  position: relative;
  overflow: hidden;
  background-image: var(--match-bg, var(--match-bg-image, none));
  background-size: var(--match-bg-size, cover);
  background-position: var(--match-bg-position, right center);
  background-repeat: no-repeat;
}

/* Data-attribute overrides for custom position and sizing */
[data-bg-position="right"] { --match-bg-position: right center; }
[data-bg-position="center"] { --match-bg-position: center center; }
[data-bg-position="left"] { --match-bg-position: left center; }
[data-bg-size="contain"] { --match-bg-size: contain; }
[data-bg-size="cover"] { --match-bg-size: cover; }

/* Semi-transparent protective gradient overlay for high contrast and readability on custom image backgrounds */
.match-group::before,
.live-match-group::before,
.live-match::before,
.live-event::before,
.esports-match::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(255, 255, 255, 0.96) 0%, 
    rgba(255, 255, 255, 0.90) 38%, 
    rgba(255, 255, 255, 0.50) 68%, 
    rgba(255, 255, 255, 0.12) 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Activate protective overlay whenever a background image is assigned via CSS custom property, inline style, or data attribute */
.match-group[style*="--match-bg"]::before,
.live-match-group[style*="--match-bg"]::before,
.live-match[style*="--match-bg"]::before,
.match-group[style*="background-image"]::before,
.live-match-group[style*="background-image"]::before,
.live-match[style*="background-image"]::before,
.match-group[data-bg-image]::before,
.live-match-group[data-bg-image]::before,
.live-match[data-bg-image]::before,
.match-group[data-has-bg]::before,
.live-match-group[data-has-bg]::before,
.live-match[data-has-bg]::before,
.match-group.has-bg::before,
.live-match-group.has-bg::before,
.live-match.has-bg::before,
.match-card-football.has-bg::before,
.match-card-football[style*="background-image"]::before,
.match-card-football[style*="--match-bg"]::before,
#live-match-football.has-bg::before,
#live-match-football[style*="background-image"]::before,
#live-match-football[style*="--match-bg"]::before,
.live-match-group[data-sport="football"].has-bg::before,
.live-match[data-sport="football"].has-bg::before,
.live-match-group[data-sport="basketball"].has-bg::before,
.live-match[data-sport="basketball"].has-bg::before,
.live-match-group[data-sport="tennis"].has-bg::before,
.live-match[data-sport="tennis"].has-bg::before,
.live-match-group[data-sport="baseball"].has-bg::before,
.live-match[data-sport="baseball"].has-bg::before,
.live-match-group[data-sport="esports"].has-bg::before,
.live-match[data-sport="esports"].has-bg::before {
  opacity: 1;
}

/* Ensure content and status sit safely above background artwork */
.live-event-main,
.live-status-wrap {
  position: relative;
  z-index: 2;
}

.match-group:last-child,
.live-match-group:last-child,
.live-match:last-child,
.live-event:last-child,
.esports-match:last-child {
  border-bottom: none;
}

.match-group:hover,
.live-match-group:hover,
.live-match:hover,
.live-event:hover,
.esports-match:hover {
  background-color: rgba(248, 250, 252, 0.7);
  cursor: pointer;
}

/* ==========================================================================
   LIVE LOCKED FEED OVERLAY & UNLOCK BUTTON (1 Button Teaser)
   Covers the bottom half of live matches (PBA & Football) with a translucent
   pitch-green blurred lock barrier and a single prominent "Unlock to View" button
   that directs to https://sportsbettingonline.org/c6Yv/
   ========================================================================== */
.live-locked-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 6px 6px;
}

.live-locked-overlay {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  background:
    /* Layer 1: Flat top fade adapting cleanly to white at the top dividing line */
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.42) 7%,
      transparent 18%
    ),
    /* Layer 2: Diagonal half split - Green on top-left, Orange on bottom-right */
    linear-gradient(
      120deg,
      rgba(6, 78, 59, 0.46) 0%,
      rgba(5, 150, 105, 0.38) 38%,
      rgba(217, 119, 6, 0.32) 52%,
      rgba(234, 88, 12, 0.42) 72%,
      rgba(194, 65, 12, 0.48) 100%
    );
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 15;
  cursor: pointer;
  padding: 16px;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.2s ease;
}

.live-locked-overlay:hover,
.live-locked-overlay:focus-visible {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.35) 7%,
      transparent 18%
    ),
    linear-gradient(
      120deg,
      rgba(6, 78, 59, 0.54) 0%,
      rgba(5, 150, 105, 0.46) 38%,
      rgba(217, 119, 6, 0.38) 52%,
      rgba(234, 88, 12, 0.48) 72%,
      rgba(194, 65, 12, 0.54) 100%
    );
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.live-locked-overlay:focus-visible {
  outline: 2px solid #ffc107;
  outline-offset: -2px;
}

/* High-contrast Gold / Amber View & Unlock Button */
.match-view-btn,
.match-unlock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #0b0c0e;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 6px 16px;
  border-radius: 9999px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.45) inset;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
  white-space: nowrap;
  pointer-events: auto;
  cursor: pointer;
}

.live-locked-overlay:hover .match-unlock-btn,
.match-unlock-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  filter: brightness(1.05);
}

.match-lock-icon {
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.match-view-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.16s ease;
}

.live-locked-overlay:hover .match-view-icon {
  transform: translateX(3px);
}

/* ==========================================================================
   SPORTS-SPECIFIC SELECTORS & CUSTOM PROPERTY HOOKS
   Assign images globally via :root variables (e.g. --sport-bg-football: url(...))
   or locally per match via style="--match-bg: url(...)" or data-bg-image="..."
   ========================================================================== */

/* 1. Football Match Cards */
#live-match-football,
.match-card-football,
.live-match-group[data-sport="football"],
.live-match[data-sport="football"],
.live-match[data-sport-bg="football"],
[data-sport-bg="football"] {
  background-color: var(--match-bg-color, #ffffff);
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-football, none)));
  background-size: var(--match-bg-size, cover);
  background-position: var(--match-bg-position, right center);
  background-repeat: no-repeat;
}

/* 2. Basketball Match Cards */
#live-match-nba,
#live-match-pba,
.match-card-basketball,
.live-match-group[data-sport="basketball"],
.live-match[data-sport="basketball"],
.live-match[data-sport-bg="basketball"],
[data-sport-bg="basketball"] {
  background-color: var(--match-bg-color, #ffffff);
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-basketball, none)));
  background-size: var(--match-bg-size, cover);
  background-position: var(--match-bg-position, right center);
  background-repeat: no-repeat;
}

/* 3. Tennis Match Cards */
.match-card-tennis,
.live-match-group[data-sport="tennis"],
.live-match[data-sport="tennis"],
.live-match[data-sport-bg="tennis"],
[data-sport-bg="tennis"] {
  background-color: var(--match-bg-color, #ffffff);
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-tennis, none)));
  background-size: var(--match-bg-size, cover);
  background-position: var(--match-bg-position, right center);
  background-repeat: no-repeat;
}

/* 4. Baseball Match Cards */
.match-card-baseball,
.live-match-group[data-sport="baseball"],
.live-match[data-sport="baseball"],
.live-match[data-sport-bg="baseball"],
[data-sport-bg="baseball"] {
  background-color: var(--match-bg-color, #ffffff);
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-baseball, none)));
  background-size: var(--match-bg-size, cover);
  background-position: var(--match-bg-position, right center);
  background-repeat: no-repeat;
}

/* 5. Esports Match Cards */
#live-match-mlbb,
#live-match-dota2,
#live-match-valorant,
.match-card-esports,
.live-match-group[data-sport="esports"],
.live-match[data-sport="esports"],
.live-match[data-sport-bg="esports"],
[data-sport-bg="esports"] {
  background-color: var(--match-bg-color, #ffffff);
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-esports, none)));
  background-size: var(--match-bg-size, cover);
  background-position: var(--match-bg-position, right center);
  background-repeat: no-repeat;
}

/* 6. Other Major Sports */
.live-match-group[data-sport="afl"],
.live-match[data-sport="afl"],
[data-sport-bg="afl"] {
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-afl, none)));
}

.live-match-group[data-sport="mma"],
.live-match[data-sport="mma"],
[data-sport-bg="mma"] {
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-mma, none)));
}

.live-match-group[data-sport="hockey"],
.live-match[data-sport="hockey"],
[data-sport-bg="hockey"] {
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-hockey, none)));
}

.live-match-group[data-sport="nfl"],
.live-match[data-sport="nfl"],
[data-sport-bg="nfl"] {
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-nfl, none)));
}

.live-match-group[data-sport="rugby"],
.live-match[data-sport="rugby"],
[data-sport-bg="rugby"] {
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-rugby, none)));
}

.live-match-group[data-sport="volleyball"],
.live-match[data-sport="volleyball"],
[data-sport-bg="volleyball"] {
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-volleyball, none)));
}

.live-match-group[data-sport="handball"],
.live-match[data-sport="handball"],
[data-sport-bg="handball"] {
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-handball, none)));
}

.live-match-group[data-sport="formula1"],
.live-match[data-sport="formula1"],
[data-sport-bg="formula1"] {
  background-image: var(--match-bg, var(--match-bg-image, var(--sport-bg-formula1, none)));
}

/* Responsive adjustment for match background image legibility on mobile */
@media (max-width: 640px) {
  .match-group,
  .live-match-group,
  .live-match,
  .live-event,
  .esports-match {
    background-position: var(--match-bg-position-mobile, right center);
  }

  .match-group::before,
  .live-match-group::before,
  .live-match::before,
  .live-event::before,
  .esports-match::before {
    background: linear-gradient(
      90deg, 
      rgba(255, 255, 255, 0.98) 0%, 
      rgba(255, 255, 255, 0.93) 48%, 
      rgba(255, 255, 255, 0.65) 75%, 
      rgba(255, 255, 255, 0.22) 100%
    );
  }
}

.live-event-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.match-league,
.live-league,
.live-event-league,
.esports-league,
.esports-game {
  font-size: 10.5px;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.live-teams-box {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 2px;
}

.live-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.match-team,
.live-team,
.live-event-team,
.esports-team {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.match-score,
.live-score,
.live-event-score,
.esports-score {
  font-size: 13.5px;
  font-weight: 800;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: #0f172a;
  min-width: 28px;
  text-align: right;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

/* Status Labels & Badges */
.live-status-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  gap: 4px;
}

.match-status,
.live-status,
.live-event-status,
.esports-status {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.2px;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.2;
}

.live-time,
.live-updated {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
}

.data-tabs-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.data-tab-btn {
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.data-tab-btn:hover,
.data-tab-btn.active {
  background-color: var(--bg-dark-header);
  color: var(--accent-gold);
  border-color: var(--bg-dark-header);
}

.data-tab-badge {
  background-color: rgba(255, 184, 0, 0.2);
  color: inherit;
  font-size: 9.5px;
  padding: 1px 5px;
  border-radius: 3px;
}

.status-live {
  color: #c2410c;
  background-color: #ffedd5;
  border: 1px solid #fed7aa;
}

.status-halftime {
  color: #b45309;
  background-color: #fef3c7;
  border: 1px solid #fde68a;
}

.status-upcoming {
  color: #475569;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.status-final {
  color: #64748b;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
}

/* Panel Action Footer */
.panel-bottom-cta {
  padding: 9px 14px;
  background-color: #fafbfc;
  border-top: 1px solid #edf0f3;
  display: flex;
  justify-content: flex-end;
}

.panel-action-link {
  font-size: 11.5px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.panel-action-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Module 3: Odds Snapshot Table */
.odds-table-wrap {
  padding: 0;
  overflow-x: auto;
}

.odds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  text-align: left;
}

.odds-table th {
  padding: 9px 14px;
  background-color: rgba(248, 250, 252, 0.7);
  color: #475569;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #d9dee5;
}

.odds-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #edf0f3;
  color: #1e293b;
  font-weight: 600;
}

.odds-table tr:last-child td {
  border-bottom: none;
}

.odds-table tr:hover td {
  background-color: #f8fafc;
}

.odds-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 800;
  color: #0f172a;
  text-align: right;
}

.odds-table th:last-child {
  text-align: right;
}

.odds-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 14px;
  background-color: #fafbfc;
  border-top: 1px solid #d9dee5;
}

.odds-note {
  font-size: 11.5px;
  color: #64748b;
  margin: 0;
}

.odds-cta-link {
  font-size: 11.5px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.odds-cta-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* ==========================================================================
   RIGHT COLUMN: TOPICS / LATEST CONTENT (Sticky on Desktop)
   ========================================================================== */
.hub-category-panel,
.category-panel {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 12px 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  align-self: start;
  z-index: 20;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.hub-category-panel::-webkit-scrollbar,
.category-panel::-webkit-scrollbar {
  width: 4px;
}

.hub-category-panel::-webkit-scrollbar-thumb,
.category-panel::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.category-section-block {
  display: flex;
  flex-direction: column;
}

.hub-category-header {
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 8px;
}

.hub-category-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #0f172a;
  text-transform: uppercase;
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.hub-category-eyebrow::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 11px;
  background: linear-gradient(180deg, #ff7a00 0%, #ffb000 100%);
  border-radius: 2px;
  margin-right: 6px;
}

/* Compact Topic Chips */
.category-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.category-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #334155;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 3.5px 7.5px;
  border-radius: 4px;
  text-decoration: none;
  line-height: 1.25;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.category-pill-link:hover {
  background-color: #f1f5f9;
  color: #0f172a;
  border-color: #94a3b8;
  text-decoration: none;
}

/* Active Topic Chip: subtle orange accent */
.category-pill-link.active {
  background-color: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
  font-weight: 700;
}

.category-pill-link.active:hover {
  background-color: #ffedd5;
  color: #9a3412;
  border-color: #fdba74;
}

/* Latest Editorial Rows (Max 3 items, thin divider between rows, clickable row) */
.hub-news-list {
  display: flex;
  flex-direction: column;
}

.editorial-row,
.latest-item {
  display: block;
  text-decoration: none;
  padding: 8px 4px;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 0.15s ease;
}

.editorial-row:first-child,
.latest-item:first-child {
  padding-top: 2px;
}

.editorial-row:last-child,
.latest-item:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.editorial-row:hover,
.latest-item:hover {
  background-color: #f8fafc;
  text-decoration: none;
}

.editorial-row-meta,
.hub-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.editorial-tag,
.hub-news-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 1.5px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Restrained Category Accents: Safety = soft orange, Live = soft blue, Odds = soft green */
.tag-safety,
.tag-sports {
  background-color: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.tag-live {
  background-color: #f0f9ff;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.tag-odds {
  background-color: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.editorial-date,
.hub-news-date {
  font-size: 10px;
  font-weight: 500;
  color: #64748b;
}

.editorial-heading,
.hub-news-heading {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.1px;
  transition: color 0.15s ease;
}

.editorial-row:hover .editorial-heading,
.latest-item:hover .hub-news-heading {
  color: #0f172a;
}

.hub-category-footer {
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
}

.hub-view-all-link {
  font-size: 11.5px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.hub-view-all-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   10. PAYMENT METHODS & RESPONSIBLE GAMING BAR (Horizontal Info Strip)
   -------------------------------------------------------------------------- */
.trust-strip-wrapper {
  background-color: #15171b;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 14px 0;
  color: #ffffff;
  margin-top: 8px;
}

.strip-info-bar {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 24px;
}

.strip-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.strip-payment-col {
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  padding-right: 24px;
}

.strip-header {
  display: flex;
  align-items: center;
}

.strip-heading {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1;
}

.strip-chips-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.strip-chip {
  background-color: #20232a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  line-height: 1.3;
  letter-spacing: 0.1px;
}

.strip-chip-link {
  font-size: 10.5px;
  font-weight: 700;
  color: #ff9f00;
  text-decoration: none;
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s ease;
}

.strip-chip-link:hover {
  color: #ffb833;
  text-decoration: underline;
}

.strip-disclaimer {
  font-size: 10px;
  color: #aeb3ba;
  line-height: 1.35;
  margin: 0;
}

.strip-safety-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.strip-safety-tag {
  background-color: #1f232b;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #d0d4dc;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.3;
}

.strip-safety-tag.tag-age {
  background-color: #2b1d07;
  color: #ffb833;
  border-color: #553a0a;
  font-weight: 800;
}

.strip-safety-action {
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.strip-action-link {
  font-size: 11.5px;
  font-weight: 800;
  color: #ff9f00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s ease;
}

.strip-action-link .arrow {
  transition: transform 0.15s ease;
}

.strip-action-link:hover {
  color: #ffb833;
  text-decoration: none;
}

.strip-action-link:hover .arrow {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   11. STRUCTURED DARK FOOTER (Reference Inspired)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-footer);
  color: var(--text-light-muted);
  font-size: 12px;
  line-height: 1.5;
  border-top: 3px solid var(--accent-gold);
  margin-top: auto;
  padding-top: 32px;
  padding-bottom: 24px;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1f222a;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #ffffff;
  margin-bottom: 12px;
  border-bottom: 1px solid #282b34;
  padding-bottom: 4px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links-list a {
  color: #a0a4b0;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links-list a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.footer-brand-desc {
  font-size: 12px;
  color: #8c909e;
  line-height: 1.55;
  margin-top: 8px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  font-size: 11px;
  color: #727682;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links {
  display: flex;
  gap: 14px;
}

.footer-bottom-links a {
  color: #8c909e;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   12. ARTICLE & INTERNAL PAGES STYLING
   -------------------------------------------------------------------------- */
.subpage-container {
  padding: 24px 0 36px 0;
}

.article-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
}

.article-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.breadcrumb-nav {
  font-size: 11px;
  color: #777777;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: #555555;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: #000000;
  text-decoration: underline;
}

.article-category-badge {
  display: inline-block;
  background-color: var(--bg-dark-header);
  color: var(--accent-gold);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.article-title {
  font-size: 28px;
  font-weight: 900;
  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.article-lead {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-meta-bar {
  display: flex;
  gap: 16px;
  background-color: #f7f8fa;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 11.5px;
  color: #666666;
  flex-wrap: wrap;
}

.article-meta-bar strong {
  color: #111111;
}

.article-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: #222222;
}

.article-section {
  margin-bottom: 22px;
}

/* Featured Article Image */
.article-featured-figure {
  margin: 18px 0 24px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background-color: #f7f8fa;
  box-shadow: var(--shadow-sm);
}

.article-featured-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  background-color: #0b0c0e;
}

.article-featured-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background-color: #070a12;
  display: block;
  transition: transform 0.28s ease, filter 0.28s ease, opacity 0.28s ease;
}

.article-featured-img-link:hover .article-featured-img,
.article-featured-img-link:focus-visible .article-featured-img {
  transform: scale(1.012);
  filter: brightness(1.05);
}

.article-featured-img-link:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: -3px;
}

.article-img-caption {
  padding: 8px 14px;
  font-size: 11.5px;
  color: #666666;
  background-color: #fafbfc;
  border-top: 1px solid var(--border-light);
  font-style: italic;
}

/* Quick High-CTR Conversion Banner */
.quick-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(90deg, #18191e 0%, #22252c 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: -10px 0 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quick-cta-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quick-cta-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #111111;
  background-color: var(--accent-gold);
  padding: 2px 7px;
  border-radius: 3px;
}

.quick-cta-text {
  font-size: 13px;
  color: #f1f5f9;
  line-height: 1.4;
}

.quick-cta-text strong {
  color: var(--accent-gold);
}

.btn-action-pulse {
  animation: pulse-glow 2.5s infinite;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.35);
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

@media (max-width: 640px) {
  .quick-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
  }
  .quick-cta-banner .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Featured Sports Promo Showcase Card */
.featured-sports-promo {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.featured-sports-promo:hover {
  border-color: #94a3b8;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.09);
}

.featured-promo-banner-link {
  display: block;
  width: 100%;
  background: #000000;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.featured-promo-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2536 / 508;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.featured-promo-banner-link:hover .featured-promo-banner-img {
  transform: scale(1.015);
}

.featured-promo-body {
  padding: 20px 22px;
}

.featured-promo-header {
  margin-bottom: 16px;
}

.featured-promo-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.badge-promo-featured {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #111111;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.badge-promo-weekly {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-promo-rollover {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
}

.featured-promo-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 8px 0;
  letter-spacing: -0.2px;
}

.featured-promo-lead {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

.featured-promo-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 12px 14px;
}

.promo-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-spec-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.promo-spec-value {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
}

.featured-promo-rules {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 18px;
}

.promo-rules-heading {
  font-size: 12px;
  font-weight: 800;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 8px 0;
}

.promo-rules-list {
  margin: 0;
  padding-left: 18px;
  font-size: 12.5px;
  color: #78350f;
  line-height: 1.55;
}

.promo-rules-list li {
  margin-bottom: 4px;
}

.promo-rules-list li:last-child {
  margin-bottom: 0;
}

.featured-promo-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.promo-action-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.promo-operator-label {
  font-size: 12px;
  color: #64748b;
}

.promo-operator-label strong {
  color: #0f172a;
  font-weight: 700;
}

.promo-badge-verified {
  font-size: 11.5px;
  font-weight: 700;
  color: #15803d;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 768px) {
  .featured-promo-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .featured-promo-action-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
  }
  .featured-promo-action-bar .btn {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
  }
}

/* Table Action Button */
.btn-table-action {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--accent-gold);
  color: #111111;
  font-weight: 800;
  font-size: 11.5px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background-color 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn-table-action:hover {
  background-color: var(--accent-gold-hover);
  color: #000000;
  text-decoration: none;
  transform: translateY(-1px);
}

.article-section h2 {
  font-size: 19px;
  font-weight: 800;
  color: #111111;
  border-bottom: 2px solid #eaebef;
  padding-bottom: 6px;
  margin-top: 18px;
  margin-bottom: 10px;
}

.article-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: #222222;
  margin-top: 12px;
  margin-bottom: 6px;
}

.article-section p {
  margin-bottom: 10px;
}

.article-list {
  margin-left: 20px;
  margin-bottom: 12px;
  list-style: disc;
}

.article-list li {
  margin-bottom: 5px;
}

/* Callout Boxes */
.callout-box {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 14px 0;
  font-size: 12.5px;
  line-height: 1.5;
  border-left: 4px solid;
}

.callout-info {
  background-color: #eff6ff;
  border-color: #3b82f6;
  color: #1e3a8a;
}

.callout-warn {
  background-color: #fffbeb;
  border-color: #f59e0b;
  color: #78350f;
}

.callout-danger {
  background-color: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

/* Tables */
.table-container {
  overflow-x: auto;
  margin: 14px 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
}

.table-caption {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #444444;
  padding: 7px 12px;
  background-color: #f4f5f8;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.table-scroll-hint {
  display: none;
  font-size: 10px;
  font-weight: 700;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background-color: #eaebef;
  padding: 2px 6px;
  border-radius: 3px;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  text-align: left;
}

.content-table th {
  background-color: var(--bg-dark-header);
  color: #ffffff;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 8px 12px;
  border-bottom: 2px solid var(--accent-gold);
  white-space: nowrap;
}

.content-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #eeeeee;
  color: #222222;
  vertical-align: middle;
}

.content-table tr:nth-child(even) td {
  background-color: #fafbfc;
}

.content-table tr:hover td {
  background-color: #fff9ea;
}

.sportsbook-table-logo {
  display: block;
  width: 120px;
  height: 32px;
  max-width: 120px;
  max-height: 32px;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.15s ease;
}

.content-table tr:hover .sportsbook-table-logo {
  transform: scale(1.03);
}

/* Sticky Column Support */
.content-table.has-sticky-col {
  border-collapse: separate;
  border-spacing: 0;
}

.content-table th.col-sticky-visit,
.content-table td.col-sticky-visit {
  position: sticky;
  right: 0;
  z-index: 5;
  text-align: center;
  min-width: 84px;
  width: 84px;
  border-left: 1px solid #e2e8f0;
  box-shadow: -4px 0 10px -2px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.content-table th.col-sticky-visit {
  background-color: var(--bg-dark-header);
  color: #ffffff;
  border-bottom: 2px solid var(--accent-gold);
  z-index: 6;
}

.content-table td.col-sticky-visit {
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.content-table tr:nth-child(even) td.col-sticky-visit {
  background-color: #fafbfc;
}

.content-table tr:hover td.col-sticky-visit {
  background-color: #fff9ea;
}

/* Checklist Section */
.checklist-section {
  background-color: #fafcf5;
  border: 1px solid #dbe6b8;
  border-left: 4px solid var(--accent-lime);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 18px 0;
}

.checklist-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 800;
  color: #1f3d0c;
  margin-bottom: 8px;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checklist-items li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12.5px;
  color: #2e4a15;
}

.check-bullet {
  color: #557e10;
  font-weight: 900;
}

/* FAQ Accordion */
.faq-section {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.faq-section h2 {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  overflow: hidden;
}

.faq-question {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  cursor: pointer;
  background-color: #fafbfc;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 14px;
  font-weight: 700;
  color: #666666;
}

.faq-item[open] .faq-question {
  background-color: #fff9ea;
  border-bottom: 1px solid #fae7ba;
  color: #000000;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

/* Related Links Grid */
.related-links-section {
  margin-top: 24px;
  padding: 16px;
  background-color: #f7f8fa;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.related-links-section h3 {
  font-size: 14px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 10px;
}

.related-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px;
}

.related-link-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.related-link-context {
  font-size: 10.5px;
  color: #777777;
}

.related-link-anchor {
  font-size: 12px;
  font-weight: 700;
  color: #0f52ba;
}

/* --------------------------------------------------------------------------
   Article & Content Subpage Mobile Responsiveness (Small Phones & Tablets)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .subpage-container {
    padding: 16px 0 28px 0;
  }
  .article-card {
    padding: 20px 18px;
    border-radius: var(--radius-sm);
  }
  .article-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .article-lead {
    font-size: 13.5px;
    line-height: 1.55;
  }
  .article-meta-bar {
    gap: 8px 14px;
    font-size: 11px;
    padding: 8px 12px;
  }
  .article-featured-figure {
    margin: 14px 0 20px 0;
  }
  .article-featured-img {
    max-height: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }
  .article-section h2 {
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 8px;
  }
}

@media (max-width: 520px) {
  .subpage-container {
    padding: 12px 0 24px 0;
  }
  .article-card {
    padding: 16px 14px;
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  }
  .article-header {
    padding-bottom: 12px;
    margin-bottom: 14px;
  }
  .breadcrumb-nav {
    font-size: 10.5px;
    gap: 3px 5px;
    margin-bottom: 6px;
    line-height: 1.4;
  }
  .article-category-badge {
    font-size: 10px;
    padding: 2.5px 7px;
    margin-bottom: 6px;
  }
  .article-title {
    font-size: 20px;
    line-height: 1.32;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .article-lead {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #444444;
  }
  .article-meta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
    font-size: 11px;
    padding: 8px 10px;
    background-color: #f4f5f8;
  }
  .article-meta-bar span {
    line-height: 1.35;
    font-size: 11px;
  }
  .article-featured-figure {
    margin: 12px 0 16px 0;
    border-radius: var(--radius-sm);
  }
  .article-featured-img {
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }
  .article-img-caption {
    padding: 6px 10px;
    font-size: 11px;
    line-height: 1.4;
    color: #555555;
  }
  .article-body {
    font-size: 13px;
    line-height: 1.6;
  }
  .article-section {
    margin-bottom: 18px;
  }
  .article-section h2 {
    font-size: 16.5px;
    line-height: 1.35;
    margin-top: 16px;
    margin-bottom: 8px;
    padding-bottom: 5px;
  }
  .article-section h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 12px;
    margin-bottom: 6px;
  }
  .article-section p {
    margin-bottom: 8px;
  }
  .article-list {
    margin-left: 16px;
    margin-bottom: 10px;
  }
  .article-list li {
    margin-bottom: 6px;
    line-height: 1.5;
    font-size: 12.5px;
  }
  .callout-box {
    padding: 10px 12px;
    font-size: 12px;
    margin: 12px 0;
    line-height: 1.5;
  }
  .table-container {
    margin: 12px 0;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-sm);
  }
  .table-caption {
    padding: 6px 10px;
    font-size: 10.5px;
  }
  .table-scroll-hint {
    display: inline-block;
  }
  .content-table th,
  .content-table td {
    padding: 7px 8px;
    font-size: 11.5px;
    line-height: 1.35;
  }
  .btn-table-action {
    padding: 6px 10px;
    font-size: 11px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .faq-section {
    margin-top: 18px;
    padding-top: 14px;
  }
  .faq-section h2 {
    font-size: 16.5px;
    margin-bottom: 10px;
  }
  .faq-list {
    gap: 7px;
  }
  .faq-question {
    padding: 11px 12px;
    font-size: 12.5px;
    min-height: 44px;
    line-height: 1.35;
  }
  .faq-answer {
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.55;
  }
  .related-links-section {
    padding: 12px;
    margin-top: 18px;
  }
  .related-links-section h3 {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .related-links-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .related-link-card {
    padding: 8px 10px;
  }
}

/* Extra small phones (<= 380px, e.g. iPhone SE, iPhone 5/mini, Galaxy Fold outer screen) */
@media (max-width: 380px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .subpage-container {
    padding: 8px 0 20px 0;
  }
  .article-card {
    padding: 14px 10px;
  }
  .article-title {
    font-size: 18px;
    line-height: 1.28;
  }
  .article-lead {
    font-size: 12.5px;
    line-height: 1.48;
  }
  .article-meta-bar {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 6px 8px;
    font-size: 10.5px;
  }
  .article-featured-img {
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }
  .article-img-caption {
    padding: 5px 8px;
    font-size: 10px;
  }
  .article-section h2 {
    font-size: 15.5px;
  }
  .article-section h3 {
    font-size: 13.5px;
  }
  .article-body {
    font-size: 12.5px;
  }
  .content-table th,
  .content-table td {
    padding: 6px 7px;
    font-size: 11px;
  }
  .callout-box {
    padding: 8px 10px;
    font-size: 11.5px;
  }
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .feature-blocks-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .feature-card-left {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }
  .footer-columns-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 16px;
  }
  .footer-col-brand,
  .footer-col:first-child {
    grid-column: 1 / -1;
    padding-bottom: 12px;
    border-bottom: 1px solid #1f222a;
  }
}

@media (max-width: 1024px) and (min-width: 961px) {
  .hub-info-grid {
    grid-template-columns: 170px minmax(0, 1fr) 240px;
    gap: 12px;
  }
}

@media (max-width: 960px) {
  .hub-info-grid {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 12px;
  }
  .hub-quick-panel,
  .quick-access-panel {
    grid-column: 1 / -1;
    position: static;
    top: auto;
    align-self: auto;
    padding: 10px 14px;
    flex-direction: column;
  }
  .hub-category-panel,
  .category-panel {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    align-self: start;
  }
  .hub-quick-header {
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
  .hub-quick-nav {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 6px;
  }
}

@media (max-width: 920px) {
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }
  .desktop-nav {
    display: none;
  }
  .header-utility {
    display: none;
  }
  .header-right-actions {
    display: flex;
  }
  .btn-header-register,
  .btn-header-play {
    display: inline-flex;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-sticky-bar {
    display: block;
  }
  .hero-title {
    font-size: 26px;
  }
  .feature-blocks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .btn-header-login {
    padding: 6px 10px;
    font-size: 11px;
  }
  .hub-quick-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .btn-header-login {
    display: none;
  }
}

@media (max-width: 400px) {
  .btn-header-register,
  .btn-header-play {
    padding: 5px 8px;
    font-size: 10.5px;
    letter-spacing: 0.2px;
  }
  .mobile-menu summary {
    padding: 5px 9px;
    font-size: 11px;
  }
  .brand-logo-img {
    height: 32px;
  }
  .mobile-sticky-btn {
    font-size: 12px;
    padding: 0 8px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    min-height: 270px;
  }
  .hero-slide-content {
    padding: 24px 20px;
  }
  .hero-title {
    font-size: 23px;
    letter-spacing: -0.4px;
    margin-bottom: 8px;
  }
  .hero-subtitle {
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.4;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  .strip-info-bar {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .strip-payment-col {
    border-right: none;
    padding-right: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }
  .hub-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hub-quick-panel,
  .quick-access-panel {
    grid-column: auto;
    position: static;
    top: auto;
    align-self: auto;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #d9dee5;
    border-radius: 6px;
    padding: 12px 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  }

  .hub-category-panel,
  .category-panel {
    position: static;
    top: auto;
    align-self: auto;
    width: 100%;
  }

  .hub-quick-header {
    display: flex;
    align-items: center;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #d9dee5;
  }

  .hub-quick-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #0f172a;
    text-transform: uppercase;
    margin: 0;
  }

  .quick-access-marquee {
    width: 100%;
  }

  .quick-access-track {
    display: flex;
    flex-direction: column;
  }

  .hub-quick-nav {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 6px;
  }

  .hub-quick-nav[aria-hidden="true"] {
    display: none;
  }
  .hub-data-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }
  .hub-data-right {
    width: 100%;
  }
  .hub-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .footer-columns-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 10px;
  }
  .footer-col-brand,
  .footer-col:first-child {
    grid-column: 1 / -1;
    padding-bottom: 12px;
    border-bottom: 1px solid #1f222a;
    margin-bottom: 2px;
  }
  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
    padding-bottom: 3px;
    white-space: nowrap;
  }
  .footer-links-list {
    gap: 5px;
  }
  .footer-links-list a {
    font-size: 11px;
    line-height: 1.35;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  .hero-slide {
    min-height: 290px;
  }
  .hero-slide-content {
    padding: 20px 16px;
  }
  .hero-title {
    font-size: 21px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   14. NEWS HUB LANDING PAGE STYLING (High-CTR & Scannable Layout)
   ========================================================================== */
.news-hero-container {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.news-hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: stretch;
}

.news-hero-main {
  display: flex;
  flex-direction: column;
}

.news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.news-eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ea580c;
}

.news-h1 {
  font-size: 27px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.news-lead {
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 650px;
}

.news-hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-news-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ea580c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
  border: 1px solid #ea580c;
}

.btn-news-primary:hover {
  background-color: #c2410c;
  color: #ffffff;
  text-decoration: none;
}

.btn-news-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #1e293b;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  transition: all 0.15s ease;
}

.btn-news-secondary:hover {
  background-color: #f8fafc;
  border-color: #0f172a;
  color: #0f172a;
  text-decoration: none;
}

.news-meta-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.news-meta-pill {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.news-meta-pill.pill-updated {
  color: #0f172a;
  background-color: #e2e8f0;
  font-weight: 700;
}

/* 3 Compact Market Snapshot Cards in Hero */
.news-snapshot-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.news-snapshot-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 10px 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.15s ease;
}

.news-snapshot-card:hover {
  background-color: #ffffff;
  border-color: #94a3b8;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
  text-decoration: none;
}

.snapshot-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.snapshot-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
}

.snapshot-badge {
  font-size: 9.5px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background-color: #e2e8f0;
  color: #334155;
  text-transform: uppercase;
}

.snapshot-desc {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

.snapshot-cta {
  font-size: 11.5px;
  font-weight: 700;
  color: #ea580c;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}

/* Fast-Click Navigation Strip */
.news-nav-strip {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.news-strip-label {
  font-size: 10.5px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 6px;
  border-right: 1px solid #e2e8f0;
}

.news-strip-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.news-strip-link:hover {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  text-decoration: none;
}

/* News 2-Column Grid with Sticky Sidebar */
.news-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 20px;
  align-items: start;
}

.news-main-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-content-panel {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.news-panel-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-panel-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.2px;
  margin: 0;
}

/* Stories Grid */
.news-stories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.news-story-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.news-story-card:hover {
  border-color: #94a3b8;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
  transform: translateY(-1px);
  text-decoration: none;
}

.story-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.story-category-tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}

.story-date {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

.story-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 6px 0;
  transition: color 0.15s ease;
}

.news-story-card:hover .story-title {
  color: #ea580c;
}

.story-snippet {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.story-chips-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.story-chip {
  font-size: 10.5px;
  font-weight: 600;
  color: #334155;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 2px 6px;
  border-radius: 3px;
}

.story-cta-link {
  font-size: 12px;
  font-weight: 700;
  color: #ea580c;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
}

/* Why Line Movement Matters: Compact Bullet Cards */
.movement-bullets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.movement-bullet-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #ea580c;
  border-radius: 4px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bullet-card-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
}

.bullet-card-text {
  font-size: 12px;
  color: #475569;
  line-height: 1.45;
  margin: 0;
}

/* Schedule Table */
.fixture-schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin: 10px 0 14px 0;
}

.fixture-schedule-table th {
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 7px 10px;
  text-align: left;
}

.fixture-schedule-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}

.fixture-schedule-table tr:nth-child(even) td {
  background-color: #f8fafc;
}

.schedule-cta-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

/* Related Hubs Section: 4 Strong Cards */
.related-hubs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.related-hub-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.15s ease;
}

.related-hub-card:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
  text-decoration: none;
}

.hub-card-label {
  font-size: 10px;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.hub-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.hub-card-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

.hub-card-action {
  font-size: 11.5px;
  font-weight: 700;
  color: #2563eb;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.related-hub-card:hover .hub-card-action {
  color: #1d4ed8;
}

/* Sticky Desktop Sidebar */
.news-sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 78px;
  align-self: start;
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 14px 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-sidebar-header {
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.news-sidebar-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #0f172a;
  text-transform: uppercase;
  margin: 0;
}

.news-quick-actions-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-quick-action-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 4px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.15s ease;
}

.news-quick-action-link:hover {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  text-decoration: none;
}

.news-sidebar-intel-box {
  background-color: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.intel-box-title {
  font-size: 10.5px;
  font-weight: 800;
  color: #c2410c;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.intel-box-text {
  font-size: 11.5px;
  color: #7c2d12;
  line-height: 1.35;
  margin: 0;
}

.intel-box-cta {
  font-size: 11px;
  font-weight: 800;
  color: #ea580c;
  text-decoration: none;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.intel-box-cta:hover {
  color: #9a3412;
  text-decoration: underline;
}

/* Responsive queries for News Page */
@media (max-width: 1024px) {
  .news-hub-grid {
    grid-template-columns: 1fr;
  }
  .news-sidebar-sticky {
    position: static;
    top: auto;
    align-self: auto;
  }
}

@media (max-width: 860px) {
  .news-hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .movement-bullets-grid {
    grid-template-columns: 1fr;
  }
  .related-hubs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .news-stories-grid {
    grid-template-columns: 1fr;
  }
  .news-h1 {
    font-size: 22px;
  }
  .news-hero-container {
    padding: 16px;
  }
  .news-content-panel {
    padding: 14px;
  }
  .news-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-news-primary,
  .btn-news-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   15. PROMOTIONS HUB STYLING (Editorial Guide & Terms Hub)
   ========================================================================== */

/* Promotions Hero Container */
.promo-hero-container {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.promo-eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ea580c;
}

.promo-h1 {
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.promo-lead {
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 760px;
}

/* Compact Quick Navigation Row */
.promo-quick-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.promo-quick-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 2px;
}

.promo-nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.promo-nav-chip:hover {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  text-decoration: none;
}

/* Thin Meta Bar */
.promo-meta-bar {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 8px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #64748b;
}

.promo-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.promo-meta-item strong {
  color: #0f172a;
  font-weight: 700;
}

/* 2-Column Layout with Sticky Sidebar (Desktop) */
.promo-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 20px;
  align-items: start;
}

.promo-main-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Sticky Table of Contents Sidebar */
.promo-sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 78px;
  align-self: start;
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 14px 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-toc-header {
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.promo-toc-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #0f172a;
  text-transform: uppercase;
  margin: 0;
}

.promo-toc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.promo-toc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.15s ease;
}

.promo-toc-link:hover {
  background-color: #f1f5f9;
  color: #ea580c;
  text-decoration: none;
}

.promo-sidebar-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promo-sidebar-box-title {
  font-size: 10.5px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.promo-sidebar-box-text {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

/* Sections & Panels */
.promo-panel {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.promo-panel-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-panel-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.2px;
  margin: 0;
}

/* 4 Promotion Type Cards */
.promo-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.promo-type-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.promo-type-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.03);
}

.promo-card-tag {
  font-size: 10px;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.promo-card-heading {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.promo-card-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 12px 0;
  flex-grow: 1;
}

.promo-card-check {
  font-size: 11.5px;
  color: #1e293b;
  background-color: #f8fafc;
  border-left: 2.5px solid #ea580c;
  padding: 6px 10px;
  border-radius: 0 4px 4px 0;
  line-height: 1.4;
  margin: 0;
}

.promo-card-check strong {
  color: #0f172a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Terms Rows (2-Column Grid on Desktop) */
.promo-terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.promo-term-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promo-term-name {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-term-badge {
  font-size: 9.5px;
  font-weight: 700;
  color: #475569;
  background-color: #e2e8f0;
  padding: 1px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}

.promo-term-desc {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.45;
  margin: 0;
}

.promo-term-verify {
  font-size: 11.5px;
  color: #334155;
  border-top: 1px dashed #cbd5e1;
  padding-top: 6px;
  margin-top: 4px;
  line-height: 1.4;
}

.promo-term-verify strong {
  color: #0f172a;
}

/* Illustrative Example Table */
.illustrative-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #c2410c;
  background-color: #ffedd5;
  border: 1px solid #fed7aa;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-example-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  margin: 12px 0 6px 0;
}

.promo-example-table th {
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 8px 12px;
  text-align: left;
}

.promo-example-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  vertical-align: top;
}

.promo-example-table tr:nth-child(even) td {
  background-color: #f8fafc;
}

.table-footnote {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 8px;
  line-height: 1.4;
}

/* Free Bet Comparison Table */
.free-bet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  margin: 14px 0 10px 0;
}

.free-bet-table th {
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 8px 12px;
  text-align: left;
}

.free-bet-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}

.free-bet-table tr:nth-child(even) td {
  background-color: #f8fafc;
}

/* Strong Verification Editorial Box */
.promo-verification-box {
  background-color: #fafbf7;
  border: 1px solid #d9dee5;
  border-left: 4px solid #ea580c;
  border-radius: 6px;
  padding: 20px;
  margin-top: 6px;
}

.verification-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.verification-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef0ea;
}

.verification-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.verification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ea580c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.verification-content {
  font-size: 13px;
  color: #334155;
  line-height: 1.5;
}

.verification-content strong {
  color: #0f172a;
}

/* 4 Related Guides Editorial Cards */
.promo-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.promo-guide-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 14px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.15s ease;
}

.promo-guide-card:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
  text-decoration: none;
}

.guide-card-label {
  font-size: 10px;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guide-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.guide-card-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

.guide-card-action {
  font-size: 11.5px;
  font-weight: 700;
  color: #2563eb;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.promo-guide-card:hover .guide-card-action {
  color: #1d4ed8;
}

/* Responsive Queries for Promotions Page */
@media (max-width: 1024px) {
  .promo-page-grid {
    grid-template-columns: 1fr;
  }
  .promo-sidebar-sticky {
    position: static;
    top: auto;
    align-self: auto;
  }
}

@media (max-width: 768px) {
  .promo-types-grid {
    grid-template-columns: 1fr;
  }
  .promo-terms-grid {
    grid-template-columns: 1fr;
  }
  .promo-related-grid {
    grid-template-columns: 1fr;
  }
  .promo-h1 {
    font-size: 22px;
  }
  .promo-hero-container {
    padding: 16px;
  }
  .promo-panel {
    padding: 16px;
  }
  .promo-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* --------------------------------------------------------------------------
   16. ODDS HUB STYLING
   -------------------------------------------------------------------------- */

/* Hero Container */
.odds-hero-container {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 22px 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.odds-breadcrumb {
  font-size: 11.5px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.odds-breadcrumb a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
}

.odds-breadcrumb a:hover {
  color: #ea580c;
  text-decoration: underline;
}

.odds-category-badge {
  display: inline-block;
  background-color: #0f172a;
  color: #ea580c;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.odds-h1 {
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin: 0 0 8px 0;
}

.odds-lead {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 14px 0;
  max-width: 820px;
}

.odds-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 12px;
}

.odds-quick-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: #1e293b;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 5px 11px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.odds-quick-chip:hover {
  background-color: #e2e8f0;
  border-color: #94a3b8;
  color: #0f172a;
  text-decoration: none;
}

.odds-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11.5px;
  color: #64748b;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

.odds-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.odds-meta-item strong {
  color: #0f172a;
  font-weight: 700;
}

/* 3 Quick Concept Cards */
.odds-concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.odds-concept-card {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.odds-concept-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.concept-card-tag {
  font-size: 10px;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.concept-card-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.concept-card-example {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
  color: #1e293b;
  margin-bottom: 8px;
}

.concept-card-example strong {
  color: #0f172a;
  font-family: monospace, monospace;
  font-size: 13px;
}

.concept-card-desc {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.45;
  margin: 0 0 12px 0;
  flex-grow: 1;
}

.concept-card-cta {
  font-size: 11.5px;
  font-weight: 700;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}

.concept-card-cta:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* 2-Column Page Layout with Sticky Sidebar */
.odds-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 20px;
  align-items: start;
}

.odds-main-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sticky Table of Contents */
.odds-sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 78px;
  align-self: start;
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 14px 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.odds-toc-header {
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.odds-toc-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #0f172a;
  text-transform: uppercase;
  margin: 0;
}

.odds-toc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.odds-toc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.15s ease;
}

.odds-toc-link:hover {
  background-color: #f1f5f9;
  color: #ea580c;
  text-decoration: none;
}

.odds-sidebar-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 2.5px solid #ea580c;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.odds-sidebar-box-title {
  font-size: 10.5px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.odds-sidebar-box-text {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

/* General Odds Panel */
.odds-panel {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.odds-panel-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.odds-panel-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.2px;
  margin: 0;
}

.odds-panel-badge {
  font-size: 10px;
  font-weight: 800;
  color: #ea580c;
  background-color: #fff7ed;
  border: 1px solid #ffedd5;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.odds-panel-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 14px 0;
}

/* Comparison Table */
.odds-table-container {
  overflow-x: auto;
  margin: 12px 0 6px 0;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  background-color: #ffffff;
}

.odds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  text-align: left;
}

.odds-table th {
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 9px 12px;
  white-space: nowrap;
}

.odds-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  vertical-align: middle;
}

.odds-table tr:nth-child(even) td {
  background-color: #f8fafc;
}

.odds-table tr:hover td {
  background-color: #f1f5f9;
}

/* 3 Formula Cards */
.odds-formula-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.odds-formula-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.formula-card-tag {
  font-size: 10px;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.formula-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.formula-code-box {
  background-color: #0f172a;
  color: #38bdf8;
  font-family: monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.2px;
}

.formula-card-desc {
  font-size: 12px;
  color: #475569;
  line-height: 1.45;
  margin: 0 0 8px 0;
  flex-grow: 1;
}

.formula-card-example {
  font-size: 11.5px;
  color: #1e293b;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 8px;
  border-radius: 4px;
  line-height: 1.35;
}

.formula-card-example strong {
  color: #0f172a;
}

/* Odds Conversion Visual Row */
.odds-conversion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 14px;
  margin: 14px 0 6px 0;
}

.conversion-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  flex: 1;
  min-width: 100px;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 10px 8px;
}

.conversion-step-label {
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.conversion-step-val {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  font-family: monospace, monospace;
}

.conversion-arrow {
  font-size: 16px;
  font-weight: 800;
  color: #ea580c;
  flex-shrink: 0;
}

/* Market Margin Section */
.odds-margin-viz {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 16px;
  margin: 14px 0 10px 0;
}

.margin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.margin-stat-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 8px 10px;
  text-align: center;
}

.margin-stat-label {
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
}

.margin-stat-val {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 2px;
  font-family: monospace, monospace;
}

.margin-progress-container {
  width: 100%;
  height: 24px;
  background-color: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  margin-bottom: 8px;
}

.margin-bar-fair {
  height: 100%;
  background-color: #1e293b;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95.5%;
}

.margin-bar-vig {
  height: 100%;
  background-color: #ea580c;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5%;
}

.margin-progress-legend {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: #64748b;
  padding: 0 2px;
}

.margin-progress-legend strong {
  color: #0f172a;
}

/* Implied Probability vs Estimate Callout */
.estimate-callout-box {
  background-color: #f8fafc;
  border: 1px solid #d9dee5;
  border-left: 3.5px solid #2563eb;
  border-radius: 5px;
  padding: 14px 16px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
}

.estimate-callout-box strong {
  color: #0f172a;
}

/* Odds Calculator Section */
.odds-calc-container {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 18px;
  margin: 12px 0 6px 0;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.calc-input-label {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.calc-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.calc-input-field {
  padding: 9px 12px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: monospace, monospace;
  color: #0f172a;
  width: 140px;
  background-color: #ffffff;
  transition: border-color 0.15s ease;
}

.calc-input-field:focus {
  outline: none;
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.calc-preset-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.calc-preset-btn {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s ease;
}

.calc-preset-btn:hover {
  background-color: #e2e8f0;
  color: #0f172a;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.calc-result-box {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 10px 12px;
  text-align: center;
}

.calc-result-label {
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
}

.calc-result-val {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  font-family: monospace, monospace;
}

/* Glossary Table */
.odds-glossary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  margin: 12px 0 6px 0;
}

.odds-glossary-table th {
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 8px 12px;
  text-align: left;
}

.odds-glossary-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

.odds-glossary-table tr:nth-child(even) td {
  background-color: #f8fafc;
}

.odds-glossary-term {
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  width: 22%;
}

.odds-glossary-meaning {
  color: #475569;
  line-height: 1.45;
}

/* Related Hubs Grid */
.odds-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.odds-hub-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 14px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.15s ease;
}

.odds-hub-card:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
  text-decoration: none;
}

.hub-card-label {
  font-size: 10px;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hub-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.hub-card-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

.hub-card-action {
  font-size: 11.5px;
  font-weight: 700;
  color: #2563eb;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.odds-hub-card:hover .hub-card-action {
  color: #1d4ed8;
}

/* Responsive Queries for Odds Hub */
@media (max-width: 1024px) {
  .odds-page-grid {
    grid-template-columns: 1fr;
  }
  .odds-sidebar-sticky {
    position: static;
    top: auto;
    align-self: auto;
  }
}

@media (max-width: 768px) {
  .odds-concept-grid {
    grid-template-columns: 1fr;
  }
  .odds-formula-grid {
    grid-template-columns: 1fr;
  }
  .margin-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calc-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .odds-related-grid {
    grid-template-columns: 1fr;
  }
  .odds-h1 {
    font-size: 22px;
  }
  .odds-hero-container {
    padding: 16px;
  }
  .odds-panel {
    padding: 16px;
  }
  .odds-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .odds-conversion-strip {
    flex-direction: column;
    gap: 6px;
  }
  .conversion-arrow {
    transform: rotate(90deg);
  }
}

/* --------------------------------------------------------------------------
   21. LIVE E-SPORTS MATCH CENTER STYLING (/e-sports-live/)
   -------------------------------------------------------------------------- */
.esports-hero-container {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 22px 24px 18px 24px;
  margin-bottom: 16px;
}

.esports-breadcrumb {
  font-size: 11.5px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.esports-breadcrumb a {
  color: #475569;
  text-decoration: none;
}

.esports-breadcrumb a:hover {
  color: #0f172a;
  text-decoration: underline;
}

.esports-category-badge {
  display: inline-block;
  background-color: #111827;
  color: #c7f000;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.esports-h1 {
  font-size: 26px;
  font-weight: 900;
  color: #111827;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin: 0 0 6px 0;
}

.esports-lead {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 14px 0;
  max-width: 800px;
}

.esports-data-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 8px 14px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 11.5px;
  color: #475569;
}

.esports-data-item strong {
  color: #0f172a;
  font-weight: 700;
}

/* Sticky Filter Bar */
.esports-filters-sticky-bar {
  position: sticky;
  top: 56px;
  z-index: 900;
  background-color: #f3f4f6;
  padding: 8px 0 12px 0;
  margin-bottom: 4px;
}

.esports-filters-row {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.esports-filters-row::-webkit-scrollbar {
  display: none;
}

.esports-filter-tab {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  white-space: nowrap;
  font-family: inherit;
}

.esports-filter-tab:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
}

.esports-filter-tab.active {
  background-color: #ffedd5;
  border-color: #ea580c;
  color: #c2410c;
}

.filter-badge {
  background-color: rgba(15, 23, 42, 0.08);
  font-size: 9.5px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  color: inherit;
}

.esports-filter-tab.active .filter-badge {
  background-color: rgba(194, 65, 12, 0.15);
  color: #9a3412;
}

/* Match Center Panel */
.esports-panel {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  margin-bottom: 18px;
  overflow: hidden;
}

.esports-panel-header {
  padding: 12px 18px;
  background-color: #ffffff;
  border-bottom: 1px solid #edf0f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.esports-panel-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.esports-panel-title {
  font-size: 15px;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

.esports-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.esports-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #16a34a;
  display: inline-block;
  animation: esportsDotPulse 1.5s infinite;
}

@keyframes esportsDotPulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

.esports-panel-meta {
  font-size: 11px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Match Row List */
.esports-matches-list {
  display: flex;
  flex-direction: column;
}

.esports-match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: inherit;
  background-color: #ffffff;
  transition: background-color 0.15s ease;
  cursor: pointer;
}

.esports-match:last-child {
  border-bottom: none;
}

.esports-match:hover {
  background-color: #f8fafc;
}

.esports-match-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.esports-league {
  font-size: 11px;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.esports-game-pill {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 800;
  color: #0f172a;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}

.esports-teams-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 1px;
}

.esports-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.esports-team-row.is-winner .esports-team {
  color: #0f172a;
  font-weight: 700;
}

.esports-team-row.is-winner .esports-score {
  color: #0f172a;
  font-weight: 800;
}

.esports-team {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.esports-score {
  font-size: 14px;
  font-weight: 800;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #0f172a;
  min-width: 26px;
  text-align: right;
}

.esports-score.score-dash {
  color: #94a3b8;
  font-weight: 500;
}

.esports-match-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  gap: 4px;
  text-align: right;
}

.esports-status {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.2px;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.esports-status.status-live {
  color: #c2410c;
  background-color: #ffedd5;
  border: 1px solid #fed7aa;
}

.esports-status.status-upcoming {
  color: #334155;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.esports-status.status-final {
  color: #475569;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
}

.esports-series {
  font-size: 10.5px;
  color: #475569;
  font-weight: 600;
}

.esports-updated {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
}

.esports-detail-link {
  font-size: 10.5px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
  transition: color 0.15s ease;
}

.esports-match:hover .esports-detail-link {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Empty State Fallback */
.esports-empty-state {
  padding: 32px 20px;
  text-align: center;
  background-color: #ffffff;
}

.empty-state-icon {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.empty-state-title {
  font-size: 14px;
  font-weight: 800;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}

.empty-state-desc {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
}

/* Panel Bottom Action */
.esports-panel-footer {
  padding: 10px 18px;
  background-color: #fafbfc;
  border-top: 1px solid #edf0f3;
  display: flex;
  justify-content: flex-end;
}

.esports-footer-link {
  font-size: 11.5px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.esports-footer-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Explore E-Sports 3-Card Grid */
.esports-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 16px 18px;
}

.esports-dir-card {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.15s ease;
  cursor: pointer;
  text-decoration: none;
}

.esports-dir-card:hover {
  border-color: #94a3b8;
  background-color: #f8fafc;
  text-decoration: none;
}

.dir-card-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dir-card-badge {
  font-size: 10px;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dir-card-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.dir-card-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

.dir-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
}

.dir-card-count {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}

.dir-card-cta {
  font-size: 11px;
  font-weight: 700;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.esports-dir-card:hover .dir-card-cta {
  color: #1d4ed8;
}

/* Educational Section 3-Card Grid */
.esports-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 16px 18px;
}

.esports-format-card {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background-color: #f8fafc;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.format-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.format-card-series {
  font-size: 11px;
  font-weight: 700;
  color: #ea580c;
  background-color: #ffedd5;
  padding: 2px 6px;
  border-radius: 3px;
}

.format-card-body {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .esports-directory-grid,
  .esports-formats-grid {
    grid-template-columns: 1fr;
    padding: 12px 14px;
  }
  .esports-h1 {
    font-size: 21px;
  }
  .esports-match {
    padding: 11px 14px;
    gap: 12px;
  }
  .esports-panel-header {
    padding: 10px 14px;
  }
  .esports-data-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ==========================================================================
   SPORTS LIVE MATCH CENTER REDESIGN (/sports-live/)
   ========================================================================== */

.sports-live-center-page {
  background-color: #f3f4f6;
  padding-bottom: 40px;
}

/* 1. Page Hero */
.sports-live-hero {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  padding: 20px 24px 18px;
  margin-bottom: 16px;
}

.sports-live-title {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin: 6px 0 8px;
  letter-spacing: -0.02em;
}

.sports-live-lead {
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
  margin: 0 0 16px;
  max-width: 800px;
}

/* Compact Status Strip */
.sports-live-status-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  padding-top: 14px;
  border-top: 1px solid #edf0f3;
  font-size: 12.5px;
}

.status-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-strip-label {
  color: #64748b;
  font-weight: 500;
}

.status-strip-val {
  color: #111827;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.status-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #16a34a;
}

/* 2. Sport Filters Sticky Bar */
.sports-filter-sticky-wrapper {
  position: sticky;
  top: 56px;
  z-index: 800;
  background-color: #f3f4f6;
  padding: 8px 0 14px;
  margin-bottom: 4px;
}

.sports-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sports-filter-row::-webkit-scrollbar {
  display: none;
}

.sport-filter-btn {
  appearance: none;
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  white-space: nowrap;
  line-height: 1.4;
}

.sport-filter-btn:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.sport-filter-btn.active {
  background-color: #ffedd5;
  border-color: #ea580c;
  color: #9a3412;
}

.sport-filter-count {
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 3px;
  background-color: #f1f5f9;
  color: #64748b;
  min-width: 18px;
  text-align: center;
  line-height: 1.3;
}

.sport-filter-btn.active .sport-filter-count {
  background-color: #fdba74;
  color: #7c2d12;
}

/* 3. Reusable Sports Live Section Panels */
.sports-live-section {
  background-color: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}

/* Section Header */
.sports-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background-color: #f8fafc;
  border-bottom: 1px solid #edf0f3;
  flex-wrap: wrap;
}

.sports-panel-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sports-panel-h2 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #0f172a;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.sports-panel-meta {
  font-size: 11.5px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sports-panel-meta strong {
  color: #0f172a;
}

.sports-panel-badge-demo {
  font-size: 10.5px;
  font-weight: 700;
  color: #475569;
  background-color: #e2e8f0;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

/* Status Pill */
.live-status-pill {
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-status-pill.status-live {
  background-color: #ffedd5;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.live-status-pill.status-upcoming {
  background-color: #e2e8f0;
  color: #334155;
}

.live-status-pill.status-final {
  background-color: #e2e8f0;
  color: #475569;
}

/* Primary Visual Distinction for LIVE NOW */
.live-now-primary-panel {
  border-color: #cbd5e1;
  border-left: 3px solid #ea580c;
}

.live-now-primary-panel .sports-panel-header {
  background-color: #ffffff;
  border-bottom: 2px solid #edf0f3;
}

/* Match Row Design */
.sports-live-section .live-match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 13px 18px;
  border-bottom: 1px solid #edf0f3;
  text-decoration: none;
  color: inherit;
  background-color: #ffffff;
  transition: background-color 0.15s ease;
  cursor: pointer;
}

.sports-live-section .live-match:last-child {
  border-bottom: none;
}

.sports-live-section .live-match:hover {
  background-color: #f8fafc;
}

.sports-live-section .live-match:focus-visible {
  outline: 2px solid #ea580c;
  outline-offset: -2px;
}

/* League text */
.sports-live-section .live-league {
  font-size: 11px;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 5px;
  display: block;
}

/* Teams Box */
.sports-live-section .live-teams-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sports-live-section .live-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sports-live-section .live-team {
  font-size: 13.5px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sports-live-section .live-score {
  font-size: 14px;
  font-weight: 800;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: #0f172a;
  min-width: 32px;
  text-align: right;
}

/* Status Column at far right */
.sports-live-section .live-status-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  gap: 4px;
  min-width: 80px;
}

.sports-live-section .live-status {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1.2;
}

.live-clock {
  font-size: 11.5px;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #c2410c;
  line-height: 1.2;
}

.sports-live-section .live-updated {
  font-size: 10.5px;
  color: #64748b;
  font-weight: 500;
  line-height: 1;
}

/* Muted styling for Recent Results */
.results-panel .live-match {
  background-color: #fafbfc;
}

.results-panel .live-match:hover {
  background-color: #f1f5f9;
}

.results-panel .live-team {
  font-size: 13px;
  color: #334155;
  font-weight: 500;
}

.results-panel .live-score {
  color: #334155;
  font-weight: 700;
}

.results-panel .live-league {
  color: #64748b;
}

/* Empty State Fallback */
.live-empty-fallback {
  padding: 36px 20px;
  text-align: center;
  background-color: #fafbfc;
}

.empty-state-icon {
  font-size: 22px;
  color: #b45309;
  margin-bottom: 8px;
}

.empty-state-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.03em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.empty-state-text {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
}

/* 4. Match Data & Update Notes */
.notes-panel {
  padding: 18px 20px;
  background-color: #ffffff;
}

.notes-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf0f3;
}

.notes-panel-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.notes-panel-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  background-color: #f1f5f9;
  padding: 2px 7px;
  border-radius: 3px;
}

.notes-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.note-point-item {
  background-color: #f8fafc;
  border: 1px solid #edf0f3;
  border-radius: 4px;
  padding: 12px 14px;
}

.note-point-heading {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.note-point-heading::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ea580c;
}

.note-point-body {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.45;
  margin: 0;
}

/* 5. Related Hubs Section */
.hubs-panel {
  padding: 18px 20px 20px;
}

.hubs-panel-header {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf0f3;
}

.hubs-panel-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.related-hubs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.related-hub-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.related-hub-card:hover {
  background-color: #ffffff;
  border-color: #cbd5e1;
}

.hub-category {
  font-size: 10px;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.hub-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.3;
}

.hub-desc {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
  margin: 0 0 12px;
  flex-grow: 1;
}

.hub-link {
  font-size: 11.5px;
  font-weight: 700;
  color: #c2410c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.hub-link:hover {
  color: #9a3412;
  text-decoration: underline;
}

/* Responsive at <= 768px */
@media (max-width: 768px) {
  .sports-live-hero {
    padding: 16px 14px;
  }
  .sports-live-title {
    font-size: 20px;
  }
  .sports-live-lead {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .sports-live-status-strip {
    gap: 8px 16px;
    font-size: 11.5px;
  }
  .sports-filter-sticky-wrapper {
    top: 56px;
    padding: 6px 0 10px;
  }
  .sport-filter-btn {
    font-size: 11.5px;
    padding: 5px 11px;
  }
  .sports-panel-header {
    padding: 11px 14px;
  }
  .sports-panel-h2 {
    font-size: 12.5px;
  }
  .sports-live-section .live-match {
    padding: 11px 14px;
    gap: 12px;
  }
  .sports-live-section .live-team {
    font-size: 12.5px;
  }
  .sports-live-section .live-score {
    font-size: 13px;
    min-width: 24px;
  }
  .sports-live-section .live-status-wrap {
    min-width: 68px;
  }
  .notes-points-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .related-hubs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .related-hubs-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Flowchart & Diagnostic Decision Tree (Login Troubleshooting)
   ========================================================================== */
.flowchart-box {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: var(--radius-sm, 6px);
  padding: 14px 16px;
  margin: 18px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.flowchart-pre {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.55;
  color: #38bdf8;
  white-space: pre;
}

/* ==========================================================================
   15. HIGH-CTR BLOG & EDITORIAL PORTAL STYLING (/news/)
   ========================================================================== */

/* Blog Hero Masthead */
.blog-masthead {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 26px 28px;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.blog-masthead::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.15) 0%, rgba(234, 88, 12, 0) 70%);
  pointer-events: none;
}

.blog-masthead-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-masthead-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(234, 88, 12, 0.4);
  color: #fb923c;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 4px;
}

.blog-masthead-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fb923c;
  box-shadow: 0 0 8px #fb923c;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.blog-masthead-counter {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 600;
}

.blog-masthead-counter strong {
  color: #e2e8f0;
}

.blog-masthead-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: -0.5px;
  margin: 0 0 8px 0;
}

.blog-masthead-desc {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 0 16px 0;
}

/* Blog Masthead Conversion Ribbon */
.blog-masthead-offer {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.masthead-offer-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.masthead-offer-tag {
  background: #f59e0b;
  color: #000000;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.masthead-offer-text {
  font-size: 13px;
  color: #f1f5f9;
}

.masthead-offer-text strong {
  color: #fef08a;
}

.btn-blog-masthead-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #000000 !important;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-blog-masthead-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.5);
  text-decoration: none;
}

/* Category Filter Navigation Bar */
.blog-category-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.blog-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #d9dee5;
  color: #334155;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.blog-cat-btn:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}

.blog-cat-btn.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

.blog-cat-count {
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 10px;
  background: #e2e8f0;
  color: #475569;
}

.blog-cat-btn.active .blog-cat-count {
  background: #ea580c;
  color: #ffffff;
}

/* Featured Hero Article Card (High CTR Magazine Layout) */
.blog-featured-hero {
  background: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-featured-hero:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
}

.blog-featured-media {
  position: relative;
  overflow: hidden;
  background-color: #0f172a;
  min-height: 280px;
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-featured-hero:hover .blog-featured-img {
  transform: scale(1.03);
}

.blog-featured-tag-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.blog-tag-lead {
  background: #ea580c;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.blog-tag-readtime {
  background: rgba(15, 23, 42, 0.85);
  color: #e2e8f0;
  backdrop-filter: blur(4px);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.blog-featured-content {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  color: #64748b;
  margin-bottom: 10px;
}

.blog-author-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #334155;
}

.blog-author-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #0f172a;
}

.blog-featured-title {
  font-size: 21px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.32;
  letter-spacing: -0.3px;
  margin: 0 0 12px 0;
  transition: color 0.15s ease;
}

.blog-featured-title a {
  color: inherit;
  text-decoration: none;
}

.blog-featured-title a:hover {
  color: #ea580c;
}

.blog-featured-excerpt {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 18px 0;
}

.blog-featured-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.btn-blog-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #0f172a;
  color: #ffffff !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.btn-blog-read:hover {
  background: #ea580c;
  color: #ffffff !important;
  text-decoration: none;
}

.btn-blog-bet-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fef3c7;
  color: #92400e !important;
  border: 1px solid #fde68a;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn-blog-bet-action:hover {
  background: #fde68a;
  color: #78350f !important;
  text-decoration: none;
}

/* Mid-Content High-CTR Conversion Breakout */
.blog-mid-conversion-banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  border: 1px solid #3730a3;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(30, 27, 75, 0.25);
  position: relative;
  overflow: hidden;
}

.blog-mid-conversion-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #ea580c, #38bdf8);
}

.mid-conv-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 580px;
}

.mid-conv-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mid-conv-badge {
  background: #f59e0b;
  color: #000000;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.mid-conv-rating {
  font-size: 11px;
  color: #fef08a;
  font-weight: 700;
}

.mid-conv-heading {
  font-size: 17px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.mid-conv-subtext {
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.45;
  margin: 0;
}

.mid-conv-perks {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  color: #94a3b8;
  flex-wrap: wrap;
}

.mid-conv-perk-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mid-conv-perk-item span {
  color: #22c55e;
  font-weight: 800;
}

.mid-conv-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.btn-mid-conv-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #000000 !important;
  font-size: 13.5px;
  font-weight: 900;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  animation: pulse-glow 2.5s infinite ease-in-out;
  transition: transform 0.15s ease;
  white-space: nowrap;
}

.btn-mid-conv-cta:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 4px 22px rgba(245, 158, 11, 0.7); }
}

.mid-conv-guarantee {
  font-size: 10.5px;
  color: #94a3b8;
}

/* Blog Article Cards Grid */
.blog-grid-section {
  margin-bottom: 28px;
}

.blog-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 16px;
}

.blog-grid-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.blog-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.blog-cat-tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(2px);
}

.blog-cat-tag.tag-pba { background: #ea580c; }
.blog-cat-tag.tag-esports { background: #059669; }
.blog-cat-tag.tag-promo { background: #d97706; }
.blog-cat-tag.tag-strategy { background: #2563eb; }
.blog-cat-tag.tag-safety { background: #475569; }
.blog-cat-tag.tag-football { background: #0891b2; }

.blog-time-tag {
  font-size: 9.5px;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 6px;
  border-radius: 3px;
}

.blog-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 8px;
}

.blog-card-author {
  font-weight: 600;
  color: #475569;
}

.blog-card-date {
  color: #94a3b8;
}

.blog-card-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 8px 0;
  transition: color 0.15s ease;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card:hover .blog-card-title a {
  color: #ea580c;
}

.blog-card-excerpt {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.blog-card-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.blog-chip {
  font-size: 10.5px;
  font-weight: 600;
  color: #334155;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 2px 6px;
  border-radius: 3px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.blog-link-read {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.blog-link-read:hover {
  color: #ea580c;
  text-decoration: none;
}

.blog-link-action {
  font-size: 11px;
  font-weight: 800;
  color: #ea580c;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  padding: 3px 8px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.blog-link-action:hover {
  background: #ea580c;
  color: #ffffff;
  border-color: #ea580c;
  text-decoration: none;
}

/* Upcoming Editorial Pipeline & Content Ready Banner */
.blog-pipeline-card {
  background: #f8fafc;
  border: 1px dashed #94a3b8;
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 20px;
}

.pipeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.pipeline-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pipeline-icon {
  font-size: 16px;
}

.pipeline-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.pipeline-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: #0369a1;
  background: #e0f2fe;
  padding: 2px 7px;
  border-radius: 3px;
}

.pipeline-desc {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 14px 0;
}

.pipeline-items-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pipeline-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pipeline-item-status {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0284c7;
}

.pipeline-item-name {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.pipeline-item-eta {
  font-size: 10.5px;
  color: #64748b;
}

/* Sidebar High-Converting Widgets */
.blog-sidebar-operator-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #f59e0b;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.operator-badge-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.op-rank-pill {
  background: #f59e0b;
  color: #000000;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.4px;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}

.op-rating-stars {
  font-size: 11px;
  color: #f59e0b;
  font-weight: 800;
}

.operator-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.operator-name {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
}

.operator-cashier-badge {
  font-size: 10px;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 2px 6px;
  border-radius: 3px;
}

.operator-bonus-highlight {
  background: #fffbeb;
  border: 1px dashed #fcd34d;
  border-radius: 4px;
  padding: 8px 10px;
  text-align: center;
}

.op-bonus-num {
  font-size: 14px;
  font-weight: 900;
  color: #b45309;
  display: block;
}

.op-bonus-sub {
  font-size: 10.5px;
  color: #78350f;
  font-weight: 600;
}

.operator-trust-pills {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  color: #475569;
  padding: 2px 0;
}

.btn-operator-claim {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #000000 !important;
  font-size: 12.5px;
  font-weight: 900;
  padding: 9px 12px;
  border-radius: 5px;
  text-decoration: none;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
  transition: transform 0.15s ease;
}

.btn-operator-claim:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

/* Sidebar VIP Picks Newsletter */
.blog-sidebar-vip-box {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 14px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vip-box-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 800;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vip-box-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.vip-box-desc {
  font-size: 11.5px;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

.vip-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.vip-input-email {
  width: 100%;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 4px;
  color: #ffffff;
  font-size: 11.5px;
  padding: 7px 10px;
  outline: none;
  box-sizing: border-box;
}

.vip-input-email:focus {
  border-color: #38bdf8;
}

.btn-vip-subscribe {
  background: #38bdf8;
  color: #0f172a !important;
  font-size: 11.5px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.4px;
  text-align: center;
  transition: background-color 0.15s ease;
}

.btn-vip-subscribe:hover {
  background: #0284c7;
  color: #ffffff !important;
}

.vip-feedback-msg {
  font-size: 10.5px;
  color: #4ade80;
  font-weight: 600;
  display: none;
}

/* Sidebar Trending Stories Widget */
.blog-trending-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px;
}

.trending-widget-title {
  font-size: 11.5px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trending-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

.trending-item:hover {
  text-decoration: none;
}

.trending-rank {
  font-size: 16px;
  font-weight: 900;
  color: #cbd5e1;
  line-height: 1;
  min-width: 18px;
}

.trending-item:hover .trending-rank {
  color: #ea580c;
}

.trending-item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trending-item-headline {
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  margin: 0;
  transition: color 0.15s ease;
}

.trending-item:hover .trending-item-headline {
  color: #ea580c;
}

.trending-item-meta {
  font-size: 10px;
  color: #94a3b8;
}

/* Responsive Rules for Blog Layout */
@media (max-width: 900px) {
  .blog-featured-grid {
    grid-template-columns: 1fr;
  }
  .blog-featured-media {
    min-height: 220px;
  }
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
  .pipeline-items-grid {
    grid-template-columns: 1fr;
  }
  .blog-mid-conversion-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .mid-conv-right {
    align-items: flex-start;
    width: 100%;
  }
  .btn-mid-conv-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .blog-masthead {
    padding: 18px 16px;
  }
  .blog-masthead-title {
    font-size: 22px;
  }
  .blog-masthead-offer {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-blog-masthead-cta {
    width: 100%;
    justify-content: center;
  }
  .blog-featured-content {
    padding: 16px;
  }
  .blog-featured-title {
    font-size: 18px;
  }
}

/* ==========================================================================
   16. FREE BETS MASTERCLASS & CONVERSION WIDGETS (/free/)
   ========================================================================== */

/* Scannable Table of Contents Grid & Mobile Accordion */
.toc-container {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #ea580c;
  border-radius: 6px;
  padding: 18px 20px;
  margin: 22px 0 28px 0;
}

.toc-summary {
  display: block;
  cursor: pointer;
  user-select: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.toc-summary::-webkit-details-marker {
  display: none;
}

.toc-summary::marker {
  display: none;
}

.toc-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.toc-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.toc-meta-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-readtime {
  font-size: 11px;
  font-weight: 700;
  color: #ea580c;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  padding: 2px 7px;
  border-radius: 3px;
  white-space: nowrap;
}

.toc-toggle-icon {
  font-size: 10px;
  color: #64748b;
  transition: transform 0.2s ease;
  display: inline-block;
}

details[open].toc-container .toc-toggle-icon {
  transform: rotate(180deg);
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin-top: 14px;
}

.toc-link {
  font-size: 12.5px;
  color: #334155;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 3px 0;
  line-height: 1.4;
  transition: color 0.15s ease;
}

.toc-link span.toc-num {
  font-size: 11px;
  font-weight: 800;
  color: #ea580c;
  min-width: 16px;
  flex-shrink: 0;
}

.toc-link span.toc-text {
  flex: 1 1 auto;
}

.toc-link span.toc-arrow {
  display: none;
}

.toc-link:hover {
  color: #ea580c;
  text-decoration: underline;
}

/* Interactive SNR & Rollover Calculator Box */
.calc-widget-container {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 22px;
  margin: 26px 0;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.calc-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #334155;
}

.calc-widget-title {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-widget-badge {
  font-size: 10px;
  font-weight: 800;
  background: #f59e0b;
  color: #000000;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.calc-grid-inputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-input-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #cbd5e1;
}

.calc-input-field {
  background: #1e293b;
  border: 1px solid #475569;
  border-radius: 4px;
  padding: 8px 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}

.calc-input-field:focus {
  border-color: #f59e0b;
}

.calc-results-panel {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid #334155;
  border-radius: 6px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.calc-result-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-stat-label {
  font-size: 10.5px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 700;
}

.calc-stat-val {
  font-size: 18px;
  font-weight: 900;
  color: #fef08a;
  line-height: 1.2;
}

.calc-stat-val.snr-payout {
  color: #4ade80;
}

.calc-stat-val.retention-rate {
  color: #38bdf8;
}

/* Operator Free Bet Comparison Matrix (Desktop & Base) */
.free-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  margin: 0;
}

.free-matrix-table th {
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 12px;
  text-align: left;
}

.free-matrix-table td {
  padding: 12px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  vertical-align: middle;
}

.free-matrix-table tr:nth-child(even) td {
  background-color: #f8fafc;
}

.free-matrix-table tr:hover td {
  background-color: #f1f5f9;
}

.matrix-op-name {
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.matrix-tag-choice {
  font-size: 10px;
  background: #ea580c;
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 2px;
  font-weight: 800;
}

.matrix-sub-tag {
  font-size: 11px;
  color: #64748b;
  display: block;
  margin-top: 2px;
}

.matrix-promo-badge {
  font-size: 11px;
  font-weight: 800;
  color: #b45309;
  background: #fef3c7;
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-block;
}

.matrix-speed-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: #15803d;
  display: flex;
  align-items: center;
  gap: 4px;
}

.matrix-label-mobile {
  display: none;
}

.btn-matrix-claim {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #000000 !important;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.25);
  transition: transform 0.15s ease;
}

.btn-matrix-claim:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

/* High-Converting End & Breakout Action Box */
.conversion-breakout-box {
  background: linear-gradient(135deg, #18191e 0%, #2a2e39 100%);
  border: 2px solid #f59e0b;
  border-radius: 8px;
  padding: 22px 24px;
  margin: 30px 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.breakout-info {
  max-width: 580px;
}

.breakout-tag {
  background: #f59e0b;
  color: #000000;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 6px;
}

.breakout-title {
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.breakout-desc {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
}

.btn-breakout-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #000000 !important;
  font-size: 13.5px;
  font-weight: 900;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  animation: pulse-glow 2.5s infinite;
  white-space: nowrap;
}

.btn-breakout-action:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

/* ==========================================================================
   MOBILE RESPONSIVE OVERHAUL FOR /free/
   ========================================================================== */

/* Tablet & Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  /* Prevent iOS Safari viewport auto-zoom on input focus */
  .calc-input-field {
    font-size: 16px !important;
    min-height: 44px;
    padding: 10px 12px;
  }

  /* Safe bottom space for fixed sticky bar */
  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px));
  }

  /* General Table container horizontal swipe polish */
  .table-container {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin: 16px 0;
  }

  .table-container table.content-table {
    min-width: 540px;
  }

  .table-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 800;
    color: #ea580c;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    padding: 2px 7px;
    border-radius: 3px;
  }
}

/* Small Screens & Mobile Phones (<= 680px) */
@media (max-width: 680px) {
  /* Transform Top 5 Sportsbooks comparison matrix into mobile stacked cards */
  .free-matrix-container {
    border: none;
    background: transparent;
    padding: 0;
    overflow-x: visible;
  }

  .free-matrix-container .table-caption {
    margin-bottom: 12px;
    border-radius: 6px;
  }

  .free-matrix-container .table-scroll-hint {
    display: none;
  }

  .free-matrix-table {
    display: block;
    width: 100%;
  }

  .free-matrix-table thead {
    display: none;
  }

  .free-matrix-table tbody {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .free-matrix-table tr.matrix-card-row {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    width: 100%;
  }

  .free-matrix-table tr.matrix-card-row:hover td {
    background-color: transparent;
  }

  .free-matrix-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px dashed #f1f5f9;
    font-size: 13px;
    color: #1e293b;
    box-sizing: border-box;
    width: 100%;
  }

  .free-matrix-table td.matrix-cell-op {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
  }

  .free-matrix-table td.matrix-cell-action {
    display: block;
    border-bottom: none;
    padding-top: 12px;
    padding-bottom: 0;
  }

  .matrix-label-mobile {
    display: inline-block;
    font-weight: 700;
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .matrix-cell-val {
    text-align: right;
  }

  .btn-matrix-claim {
    width: 100%;
    min-height: 44px;
    font-size: 13px;
    font-weight: 900;
    justify-content: center;
    border-radius: 6px;
    letter-spacing: 0.4px;
  }
}

/* Standard Mobile Phones (<= 640px) */
@media (max-width: 640px) {
  /* Table of Contents Mobile Touch Experience */
  .toc-container {
    padding: 14px 12px;
    margin: 16px 0 22px 0;
    border-radius: 6px;
  }

  .toc-title {
    font-size: 12.5px;
    letter-spacing: 0.2px;
  }

  .toc-grid {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 12px;
  }

  .toc-link {
    font-size: 12.5px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1e293b;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }

  .toc-link:active {
    background: #fff7ed;
    border-color: #ea580c;
  }

  .toc-link span.toc-arrow {
    display: inline-block;
    color: #94a3b8;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    margin-left: 6px;
  }

  /* Calculators Mobile Stack & Touch Adjustments */
  .calc-widget-container {
    padding: 16px 14px;
    margin: 20px 0;
    border-radius: 8px;
  }

  .calc-widget-title {
    font-size: 14.5px;
    line-height: 1.35;
  }

  .calc-grid-inputs {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }

  .calc-results-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: rgba(15, 23, 42, 0.9);
  }

  .calc-result-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .calc-stat-label {
    font-size: 11px;
    color: #94a3b8;
  }

  .calc-stat-val {
    font-size: 16.5px;
    font-weight: 900;
    text-align: right;
  }

  /* Breakout Action Box Mobile Optimization */
  .conversion-breakout-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 14px;
    margin: 22px 0;
    gap: 14px;
  }

  .breakout-title {
    font-size: 16.5px;
    line-height: 1.35;
  }

  .breakout-desc {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .btn-breakout-action {
    width: 100%;
    min-height: 48px;
    font-size: 13.5px;
    padding: 12px 16px;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  /* Quick CTA Banner Mobile Touch Fixes */
  .quick-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
    margin-bottom: 16px;
    gap: 10px;
  }

  .quick-cta-text {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .quick-cta-banner .btn {
    width: 100%;
    min-height: 44px;
    font-size: 13px;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  /* Code Blocks Overflow Protection */
  code {
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    font-size: 11.5px;
  }
}

/* Extra Small Phones (<= 380px, e.g. iPhone SE, iPhone 12/13 mini, Galaxy Fold) */
@media (max-width: 380px) {
  .toc-container {
    padding: 12px 10px;
  }

  .toc-title {
    font-size: 11.5px;
  }

  .toc-link {
    font-size: 11.5px;
    padding: 8px 10px;
    min-height: 40px;
  }

  .calc-widget-container {
    padding: 12px 10px;
  }

  .calc-stat-val {
    font-size: 15px;
  }

  .calc-stat-label {
    font-size: 10px;
  }

  .free-matrix-table tr.matrix-card-row {
    padding: 12px 10px;
  }

  .conversion-breakout-box {
    padding: 14px 10px;
  }

  .breakout-title {
    font-size: 15.5px;
  }

  .btn-breakout-action {
    font-size: 12.5px;
    padding: 10px 12px;
  }
}

/* ==========================================================================
   14. HOMEPAGE PILLAR GUIDE COMPONENT STYLES
   ========================================================================== */
.pillar-guide-section {
  padding: 40px 0 60px 0;
  position: relative;
  z-index: 2;
}

.pillar-card {
  background: #13161f;
  border: 1px solid #242938;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 36px 32px;
  color: #e2e8f0;
}

@media (max-width: 768px) {
  .pillar-card {
    padding: 22px 16px;
    border-radius: 10px;
  }
}

.pillar-header {
  margin-bottom: 28px;
  border-bottom: 1px solid #242938;
  padding-bottom: 24px;
}

.pillar-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pillar-tag-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 176, 0, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(255, 176, 0, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pillar-tag-age {
  display: inline-flex;
  align-items: center;
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.pillar-tag-updated {
  font-size: 12px;
  color: #94a3b8;
}

.pillar-main-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}

@media (max-width: 768px) {
  .pillar-main-title {
    font-size: 21px;
  }
}

.pillar-meta-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  background: #181d29;
  border: 1px solid #282f40;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 12px;
  color: #cbd5e1;
  margin-top: 18px;
}

.pillar-meta-bar a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.pillar-meta-bar a:hover {
  color: #ffffff;
}

/* Benefit Highlights Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0 32px 0;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #181d2a;
  border: 1px solid #282f42;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: #f1f5f9;
  line-height: 1.4;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 12px;
}

/* Quick Answer Callout */
.quick-answer-card {
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.08) 0%, rgba(20, 24, 34, 0.95) 100%);
  border: 1px solid rgba(255, 176, 0, 0.4);
  border-left: 5px solid var(--accent-gold);
  border-radius: 8px;
  padding: 20px 22px;
  margin: 24px 0 34px 0;
}

.quick-answer-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #f8fafc;
}

.quick-answer-card strong {
  color: var(--accent-gold);
}

/* Pillar Content Sections */
.pillar-section {
  margin-bottom: 40px;
  border-bottom: 1px solid #212634;
  padding-bottom: 34px;
}

.pillar-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pillar-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-section h3 {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  margin: 20px 0 10px 0;
}

.pillar-section p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0 0 14px 0;
}

.pillar-section p:last-child {
  margin-bottom: 0;
}

.pillar-section ul,
.pillar-section ol {
  margin: 12px 0 18px 0;
  padding-left: 22px;
  color: #cbd5e1;
}

.pillar-section li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.pillar-section li strong {
  color: #ffffff;
}

/* 8-Step Sequential Workflow */
.pillar-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 20px 0 24px 0;
}

.step-card {
  background: #171b26;
  border: 1px solid #262c3d;
  border-radius: 8px;
  padding: 16px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent-gold);
  color: #0b0c0e;
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 10px;
}

.step-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0;
}

/* Comparison Matrix Custom */
.pillar-matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px 0;
  background: #161a24;
  border: 1px solid #282f42;
  border-radius: 8px;
  overflow: hidden;
}

.pillar-matrix-table th {
  background: #1e2433;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 12px 14px;
  text-align: left;
  border-bottom: 2px solid #2e374d;
}

.pillar-matrix-table td {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e1;
  border-bottom: 1px solid #222838;
}

.pillar-matrix-table tr:hover td {
  background: #1b202d;
}

.pillar-matrix-table td:first-child {
  font-weight: 700;
  color: #f1f5f9;
  white-space: nowrap;
}

.td-warning {
  color: #f87171 !important;
}

.td-good {
  color: #34d399 !important;
}

@media (max-width: 768px) {
  .pillar-matrix-table th,
  .pillar-matrix-table td {
    padding: 8px 10px;
    font-size: 12px;
  }
}

/* Pillar Card Content Tables (Dark Theme High Contrast & Visibility) */
.pillar-card .content-table,
.pillar-section .content-table,
.pillar-content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
  background-color: #161a25;
  border: 1px solid #282f42;
  border-radius: 8px;
  overflow: hidden;
}

.pillar-card .content-table th,
.pillar-section .content-table th,
.pillar-content-table th {
  background-color: #0d111a;
  color: #ffffff;
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 11px 14px;
  border-bottom: 2px solid var(--accent-gold);
  white-space: nowrap;
}

.pillar-card .content-table td,
.pillar-section .content-table td,
.pillar-content-table td {
  padding: 11px 14px;
  border-bottom: 1px solid #232a3b;
  color: #e2e8f0;
  vertical-align: middle;
  background-color: #161a25;
  font-size: 13px;
  line-height: 1.5;
}

.pillar-card .content-table tr:nth-child(even) td,
.pillar-section .content-table tr:nth-child(even) td,
.pillar-content-table tr:nth-child(even) td {
  background-color: #1c2231;
  color: #e2e8f0;
}

.pillar-card .content-table tr:hover td,
.pillar-section .content-table tr:hover td,
.pillar-content-table tr:hover td {
  background-color: #242c3f;
  color: #ffffff;
}

.pillar-card .content-table td strong,
.pillar-section .content-table td strong,
.pillar-content-table td strong {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .pillar-card .content-table th,
  .pillar-card .content-table td,
  .pillar-section .content-table th,
  .pillar-section .content-table td,
  .pillar-content-table th,
  .pillar-content-table td {
    padding: 9px 10px;
    font-size: 12px;
  }
}

/* Topic Hub Cards (Keyword to URL Mapped) */
.topic-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}

@media (max-width: 900px) {
  .topic-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .topic-hub-grid {
    grid-template-columns: 1fr;
  }
}

.topic-hub-card {
  display: flex;
  flex-direction: column;
  background: #171b26;
  border: 1px solid #262c3d;
  border-radius: 8px;
  padding: 18px;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.topic-hub-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
  background: #1a1f2c;
  text-decoration: none;
}

.topic-hub-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topic-hub-card-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: #94a3b8;
  margin: 0;
}

.topic-hub-arrow {
  color: var(--accent-gold);
  font-size: 14px;
}

/* Regulatory Primary Sources Box */
.regulatory-sources-card {
  background: #151822;
  border: 1px solid #262c3d;
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 24px;
  font-size: 13px;
  color: #94a3b8;
}

.regulatory-sources-card h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #cbd5e1;
  margin: 0 0 10px 0;
}

.regulatory-sources-card ul {
  margin: 0;
  padding-left: 18px;
}

.regulatory-sources-card li {
  margin-bottom: 4px;
  color: #94a3b8;
}

/* FAQ Details Accordion */
.pillar-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.pillar-faq-item {
  background: #171b26;
  border: 1px solid #262c3d;
  border-radius: 8px;
  overflow: hidden;
}

.pillar-faq-summary {
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.pillar-faq-summary::-webkit-details-marker {
  display: none;
}

.pillar-faq-summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-left: 12px;
}

.pillar-faq-item[open] .pillar-faq-summary::after {
  content: '−';
}

.pillar-faq-body {
  padding: 0 18px 16px 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #cbd5e1;
}

.pillar-faq-body p {
  margin: 0;
}

/* ==========================================
   SBO PROMOTIONAL POP-UP MODAL (MODELS DISPLAY)
   Fits perfectly on all device viewports
   ========================================== */
.sbo-promo-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sbo-promo-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.sbo-promo-modal-container {
  position: relative;
  width: 100%;
  max-width: min(840px, 94vw);
  max-height: 90vh;
  background: #090e1a;
  border: 2px solid #f59e0b;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75), 0 0 35px rgba(245, 158, 11, 0.25);
  display: flex;
  flex-direction: column;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sbo-promo-modal-backdrop.is-open .sbo-promo-modal-container {
  transform: scale(1) translateY(0);
}

.sbo-promo-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid #f59e0b;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sbo-promo-modal-close:hover,
.sbo-promo-modal-close:focus {
  background: #f59e0b;
  color: #09090b;
  transform: rotate(90deg);
}

.sbo-promo-modal-body {
  position: relative;
  overflow-y: auto;
  max-height: calc(90vh - 20px);
  display: flex;
  flex-direction: column;
}

.sbo-promo-modal-link {
  display: block;
  text-decoration: none;
  background: #060913;
}

.sbo-promo-modal-img {
  width: 100%;
  height: auto;
  max-height: min(520px, 68vh);
  object-fit: contain;
  display: block;
}

.sbo-promo-modal-footer {
  padding: 12px 20px;
  background: linear-gradient(180deg, #090e1a 0%, #030712 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #1e293b;
}

.sbo-promo-modal-trust {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sbo-promo-modal-trust strong {
  color: #34d399;
}

.sbo-promo-modal-btn {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  color: #09090b;
  font-weight: 900;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  white-space: nowrap;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.sbo-promo-modal-btn:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
}

/* Pillar CTA Actions */
.pillar-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.pillar-cta-actions.justify-center {
  justify-content: center;
}

.pillar-cta-btn {
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px !important;
  padding: 11px 22px !important;
  min-height: 44px !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .pillar-cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
  }
  .pillar-cta-actions .pillar-cta-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 16px !important;
    font-size: 12.5px !important;
    min-height: 44px !important;
    border-radius: 8px !important;
    white-space: normal;
  }
}

/* Floating Trigger Widget */
.sbo-promo-floating-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 850;
  display: flex;
  align-items: center;
}

.sbo-promo-floating-trigger {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border: 1.5px solid #f59e0b;
  border-radius: 999px;
  padding: 8px 18px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(245, 158, 11, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sbo-promo-floating-trigger:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 22px rgba(245, 158, 11, 0.5);
  background: #1e293b;
  color: #ffffff;
}

.sbo-promo-dismiss-btn {
  background: #0f172a;
  border: 1px solid rgba(245, 158, 11, 0.6);
  color: #94a3b8;
  font-size: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: -8px;
  z-index: 851;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}

.sbo-promo-dismiss-btn:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

@media (max-width: 920px) {
  /* On mobile where .mobile-sticky-bar is active (bottom: 0, height: ~56px), 
     float ABOVE the sticky bar on the right side so it NEVER collides with LOGIN or REGISTER */
  .sbo-promo-floating-wrapper {
    bottom: calc(66px + env(safe-area-inset-bottom, 0px));
    right: 14px;
    left: auto;
    z-index: 850;
  }
  .sbo-promo-floating-trigger {
    padding: 6px 13px;
    font-size: 11.5px;
  }
}

@media (max-width: 640px) {
  .sbo-promo-modal-footer {
    flex-direction: column;
    text-align: center;
    padding: 10px 14px;
  }
}








