/* ============================================
   PROBWIN NAVBAR — Tabs Premium Edition
   Sports as prominent individual tabs with
   casino/sportsbook premium feel
   ============================================ */

/* Google Fonts - All navbar fonts consolidated */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@500;600;700&family=JetBrains+Mono:wght@700&family=Orbitron:wght@600;700&family=Oswald:wght@500;700&display=swap');


/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  height: var(--nav-height);
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  overflow: visible;
}
/* Subtle gold line at bottom */
.topbar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-dark) 20%,
    var(--gold-primary) 50%,
    var(--gold-dark) 80%,
    transparent 100%);
}

.navbar {
  display: flex;
  align-items: stretch;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
}


/* ===== LOGO ===== */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255, 215, 0, 0.1);
  margin-right: 8px;
}
.nav-logo span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}
.nav-logo img {
  width: 44px;
  height: 44px;
  filter: brightness(0) saturate(100%) invert(85%) sepia(50%) saturate(500%) hue-rotate(5deg);
}
.logo-fallback {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--bg-dark);
  font-size: 14px;
}


/* ===== CENTER: SPORT TABS ===== */
.nav-center {
  display: flex;
  align-items: stretch;
  flex: 1;
  gap: 0;
}

/* Container for sport tabs */
.nav-pill {
  display: flex;
  align-items: stretch;
  gap: 4px;
  padding: 10px 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.nav-pill-sports {
  padding-right: 0;
  margin-right: 0;
}
.nav-pill-secondary {
  margin-left: auto;
  padding-left: 20px;
  position: relative;
}
/* Separateur vertical dore a gauche du menu secondaire */
.nav-pill-secondary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.4), transparent);
  border-radius: 2px;
}

/* Individual Tab Style */
.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 18px;
  min-width: 78px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.2s ease;
}

/* Sport Icons */
.nav-icon {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.6;
  opacity: 0.8;
  transition: all 0.2s ease;
}

/* Hover State */
.nav-item:hover {
  color: #fff;
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
}
.nav-item:hover .nav-icon {
  opacity: 1;
  stroke: var(--gold-light);
}

/* ===== ACTIVE TAB - The Star ===== */
.nav-item.active {
  color: var(--gold-primary);
  background: linear-gradient(180deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(255, 215, 0, 0.08) 100%);
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}
.nav-item.active .nav-icon {
  opacity: 1;
  stroke: var(--gold-primary);
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

/* Active: Golden bottom border */
.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-dark));
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Active: Top glow indicator - removed for cleaner look */
.nav-item.active::before {
  display: none;
}

/* Secondary items (Resultats, Guides, Data, Tarifs) */
.nav-pill-secondary .nav-item {
  min-width: auto;
  padding: 8px 14px;
  font-size: 15px;
  flex-direction: row;
  gap: 8px;
  background: transparent;
  border-color: transparent;
}
.nav-pill-secondary .nav-icon {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}
.nav-pill-secondary .nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.nav-pill-secondary .nav-item.active {
  color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
}
.nav-pill-secondary .nav-item.active .nav-icon {
  stroke: var(--gold-primary);
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}
.nav-pill-secondary .nav-item.active::after {
  display: none;
}
.nav-pill-secondary .nav-item.active::before {
  display: none;
}


/* ===== RIGHT ACTIONS ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  margin-left: 8px;
}

.nav-tz {
  display: none; /* Hidden by design */
}

.nav-badge {
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-badge:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
}

.nav-btn {
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-btn-primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  border: none;
  color: var(--bg-dark);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}
.nav-btn-primary:hover {
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
  transform: translateY(-1px);
}


/* ===== AVATAR ===== */
.nav-avatar {
  position: relative;
}
.nav-avatar-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-avatar-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.15);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}
.nav-avatar-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}
.nav-avatar-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-avatar-menu a {
  display: block;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.nav-avatar-menu a:hover {
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold-primary);
}
.nav-avatar-menu hr {
  border: none;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin: 4px 14px;
}

/* ===== NAV DROPDOWN (Guides) ===== */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}
/* Ensure the nav-item inside dropdown behaves exactly like siblings */
.nav-pill-secondary .nav-dropdown {
  align-self: stretch;
}
.nav-pill-secondary .nav-dropdown > .nav-item {
  height: 100%;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: rgba(10, 14, 20, 0.98);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover {
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold-primary);
}
.nav-dropdown-menu a svg {
  color: var(--muted);
  flex-shrink: 0;
}
.nav-dropdown-menu a:hover svg {
  color: var(--gold-primary);
}

/* ===== MOBILE TOGGLE ===== */
.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}
.nav-mobile-toggle:hover {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.05);
}
.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: all 0.25s ease;
}


/* ============================================
   FLASH SALE BANNER — Vegas Noir Edition
   ============================================ */

.apology-banner {
  position: fixed;
  top: 132px;
  left: 0;
  right: 0;
  z-index: var(--z-banner);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #0a0a0f 0%, #12101a 25%, #1a0a12 50%, #12101a 75%, #0a0a0f 100%);
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
  border-bottom: 1px solid rgba(255, 59, 48, 0.3);
  box-shadow: 0 4px 30px rgba(255, 59, 48, 0.15), inset 0 -1px 0 rgba(255, 200, 55, 0.1);
  overflow: hidden;
}
.apology-banner.hidden { display: none; }
.apology-banner.hiding { animation: bannerExit 0.4s ease forwards; }

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes bannerExit {
  to { opacity: 0; transform: translateY(-100%); }
}

.apology-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 59, 48, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.apology-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.apology-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #ff3b30 0%, #ff6b4a 100%);
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255, 59, 48, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: badgePulse 1.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 59, 48, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 59, 48, 0.8), 0 2px 8px rgba(0, 0, 0, 0.3); }
}

.apology-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.apology-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffc837;
  text-shadow: 0 0 20px rgba(255, 200, 55, 0.5);
  margin-right: 4px;
}

.apology-code {
  display: inline-block;
  padding: 3px 10px;
  margin: 0 2px;
  background: rgba(255, 200, 55, 0.15);
  border: 1px solid rgba(255, 200, 55, 0.4);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #ffc837;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(255, 200, 55, 0.4);
  animation: codeGlow 2s ease-in-out infinite alternate;
}
@keyframes codeGlow {
  from { box-shadow: 0 0 5px rgba(255, 200, 55, 0.2); }
  to { box-shadow: 0 0 15px rgba(255, 200, 55, 0.4); }
}

.apology-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  margin-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.countdown-block {
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.countdown-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  min-width: 26px;
  text-align: center;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
#cd-secs {
  color: #ff6b4a;
  animation: secTick 1s ease-in-out infinite;
}
@keyframes secTick {
  0%, 100% { transform: scale(1); text-shadow: 0 0 15px rgba(255, 107, 74, 0.5); }
  50% { transform: scale(1.1); text-shadow: 0 0 25px rgba(255, 107, 74, 0.8); }
}
.countdown-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-left: 1px;
}
.countdown-sep {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 2px;
  animation: sepBlink 1s step-end infinite;
}
@keyframes sepBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.apology-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #ffc837 0%, #ff8008 100%);
  border: none;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0a0a0f;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 128, 8, 0.4);
}
.apology-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(255, 128, 8, 0.5), 0 0 0 3px rgba(255, 200, 55, 0.2);
}

.apology-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}
.apology-close:hover {
  background: rgba(255, 59, 48, 0.2);
  border-color: rgba(255, 59, 48, 0.3);
  color: #ff6b4a;
}

@media (max-width: 900px) {
  .apology-inner { gap: 12px; }
  .apology-text { font-size: 12px; }
  .apology-text strong { font-size: 14px; }
}
@media (max-width: 700px) {
  .apology-banner { height: auto; padding: 10px 40px 10px 12px; }
  .apology-inner { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .apology-badge { font-size: 10px; padding: 3px 8px; }
  .apology-text { font-size: 11px; text-align: center; }
  .apology-countdown { border-left: none; margin-left: 0; padding: 0; }
  .countdown-num { font-size: 14px; min-width: 20px; }
  .apology-btn { padding: 6px 14px; font-size: 11px; }
}
@media (max-width: 480px) {
  .apology-text span { display: none; }
  .apology-code { margin-left: 4px; }
}


/* ============================================
   PROMO BANNER - Premium Design
   ============================================ */

.promo-banner {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: var(--z-banner);
  padding: 8px 50px 8px 20px;
  transition: top 0.3s ease;
  background: linear-gradient(90deg, #0B0F14 0%, #1a1f2e 50%, #0B0F14 100%);
  border-bottom: 1px solid rgba(255, 199, 58, 0.3);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.promo-banner::before {
  content: '\1F381'; /* gift emoji */
  font-size: 16px;
}
.promo-banner a {
  color: #FFC73A;
  text-decoration: none;
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(255, 199, 58, 0.15);
  border: 1px solid rgba(255, 199, 58, 0.3);
  border-radius: 20px;
  margin-left: 8px;
  transition: all 0.3s ease;
}
.promo-banner a:hover {
  background: rgba(255, 199, 58, 0.25);
  border-color: rgba(255, 199, 58, 0.5);
  transform: translateY(-1px);
}
.promo-banner-pro {
  background: linear-gradient(90deg, #0B0F14 0%, #0f1a14 50%, #0B0F14 100%);
  border-bottom: 1px solid rgba(34, 197, 94, 0.3);
}
.promo-banner-pro::before {
  content: none;
}
.promo-banner-pro .promo-icon {
  font-size: 16px;
}
.promo-banner-pro a {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
}
.promo-banner-pro a:hover {
  background: rgba(34, 197, 94, 0.25);
  border-color: rgba(34, 197, 94, 0.5);
}
.promo-banner-upgrade {
  background: linear-gradient(90deg, #0B0F14 0%, #1a1510 50%, #0B0F14 100%);
  border-bottom: 1px solid rgba(255, 199, 58, 0.4);
}
.promo-banner-upgrade::before {
  content: '\26A1'; /* lightning emoji */
}
.promo-banner-upgrade a {
  color: #FFC73A;
  background: linear-gradient(135deg, rgba(255, 199, 58, 0.2), rgba(255, 140, 26, 0.2));
  border: 1px solid rgba(255, 199, 58, 0.4);
  font-weight: 700;
}
.promo-banner-upgrade a:hover {
  background: linear-gradient(135deg, rgba(255, 199, 58, 0.3), rgba(255, 140, 26, 0.3));
  border-color: rgba(255, 199, 58, 0.6);
  box-shadow: 0 0 12px rgba(255, 199, 58, 0.3);
}
.promo-banner-signup {
  background: linear-gradient(90deg, #FFC73A 0%, #FFD966 25%, #FFC73A 50%, #FF8C1A 75%, #FFC73A 100%);
  background-size: 300% 100%;
  animation: shimmer 4s ease-in-out infinite;
  color: #0B0F14;
  border-bottom: none;
  font-weight: 600;
}
.promo-banner-signup::before {
  content: '\1F381'; /* gift emoji */
  font-size: 18px;
}
.promo-banner-signup a {
  color: #fff;
  background: #0B0F14;
  border: none;
  font-weight: 700;
  padding: 6px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.promo-banner-signup a:hover {
  background: #1a1f2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.promo-banner .promo-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.promo-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.promo-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}
.promo-banner-signup .promo-close {
  color: #0B0F14;
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.2);
}
.promo-banner-signup .promo-close:hover {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.3);
}
.promo-banner.hidden {
  display: none;
}
.promo-banner.scrolled {
  top: 88px; /* Keep same as --nav-height since navbar doesn't shrink */
}


/* ============================================
   BODY PADDING ADJUSTMENTS
   ============================================ */

body.has-promo {
  padding-top: 132px;
}
body:not(.has-promo) {
  padding-top: 88px;
}
/* Extra padding when apology/flash-sale banner is also visible */
body.has-promo.has-apology {
  padding-top: 184px;
}
body:not(.has-promo).has-apology {
  padding-top: 140px;
}


/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: var(--z-mobile-overlay);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  z-index: var(--z-mobile-menu);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 1px solid rgba(255, 199, 58, 0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-header span {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
  transition: all 0.2s;
}
.mobile-menu-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
.mobile-menu-nav {
  padding: 20px;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s;
  margin-bottom: 8px;
}
.mobile-menu-nav a:hover {
  background: rgba(255, 199, 58, 0.1);
  color: #FFC73A;
}
.mobile-menu-nav a.active {
  background: linear-gradient(135deg, rgba(255, 199, 58, 0.2) 0%, rgba(255, 140, 26, 0.1) 100%);
  color: #FFD700;
  border-left: 3px solid #FFD700;
}
.mobile-menu-section {
  padding: 12px 20px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}
.mobile-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 16px 20px;
}
.mobile-menu-cta {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-cta a {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.mobile-menu-cta .btn-primary {
  background: linear-gradient(135deg, #FFD700 0%, #FFC73A 50%, #FF8C1A 100%);
  color: #0B0F14;
}
.mobile-menu-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hamburger Animation */
.nav-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* ============================================
   RESPONSIVE - NAVBAR
   ============================================ */

/* Medium screens */
@media (max-width: 1200px) {
  .nav-item {
    padding: 8px 12px;
    min-width: 65px;
    font-size: 16px;
  }
  .nav-icon {
    width: 28px;
    height: 28px;
  }
  .nav-pill-secondary .nav-item {
    padding: 6px 10px;
    font-size: 14px;
  }
}

/* Smaller screens */
@media (max-width: 1000px) {
  .nav-item {
    padding: 6px 10px;
    min-width: 55px;
    font-size: 14px;
    gap: 3px;
  }
  .nav-icon {
    width: 24px;
    height: 24px;
  }
  .nav-pill-secondary .nav-item {
    padding: 6px 8px;
    font-size: 13px;
  }
  .nav-pill-secondary .nav-icon {
    width: 16px;
    height: 16px;
  }
}

/* Mobile - Hide nav, show hamburger */
@media (max-width: 850px) {
  .nav-center {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
  }
  .nav-right .nav-badge {
    display: none;
  }
  .nav-right .nav-btn {
    display: none;
  }
  .nav-avatar {
    display: none;
  }
  .nav-right {
    border-left: none;
    padding-left: 0;
  }
  .nav-logo {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}


/* ============================================
   CONFIDENCE BADGES - S/A/B/C System
   ============================================ */

.confidence-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  font-family: 'Inter', -apple-system, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.confidence-s {
  background: rgba(34, 197, 94, 0.2);
  color: #22C55E;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.confidence-a {
  background: rgba(255, 199, 58, 0.2);
  color: #FFC73A;
  border: 1px solid rgba(255, 199, 58, 0.25);
}
.confidence-b {
  background: rgba(148, 163, 184, 0.15);
  color: #94A3B8;
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.confidence-c {
  background: rgba(100, 116, 139, 0.1);
  color: #64748B;
  border: 1px solid rgba(100, 116, 139, 0.15);
}


/* ============================================
   GAME COUNTDOWN
   ============================================ */

.game-countdown {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: 'Space Grotesk', monospace;
  font-size: 13px;
  color: #94A3B8;
  background: rgba(59, 130, 246, 0.15);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.game-countdown .cd-value {
  font-weight: 800;
  color: #60A5FA;
  min-width: 20px;
  text-align: center;
  font-size: 14px;
}
.game-countdown .cd-unit {
  font-weight: 600;
  color: #94A3B8;
  font-size: 11px;
  margin-right: 4px;
}
.game-countdown .cd-urgent {
  color: #F59E0B;
  animation: pulse-urgent 1s ease-in-out infinite;
}
.game-countdown.countdown-urgent {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.15);
}
.game-countdown.countdown-urgent .cd-value {
  color: #FBBF24;
}
.game-countdown .live-badge {
  font-weight: 800;
  color: #22C55E;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}
.game-countdown.countdown-live {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.15);
}
@keyframes pulse-urgent {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
