/* ===== LWORX MOVIE - MAIN STYLESHEET ===== */
:root {
  --red: #E50914;
  --red-dark: #b20710;
  --red-glow: rgba(229,9,20,0.3);
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #1a1a24;
  --card: #16161f;
  --card-hover: #1e1e2a;
  --border: rgba(255,255,255,0.08);
  --text: #f0f0f0;
  --text2: #a0a0b0;
  --text3: #606070;
  --gold: #f5c518;
  --green: #46d369;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width:100%; display:block; }
button { cursor:pointer; border:none; outline:none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,10,15,0.98) 0%, rgba(10,10,15,0.8) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,15,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: white;
}

.logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text2);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.08);
}

.nav-links a.active { color: var(--red); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-form {
  display: flex;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.search-form:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.search-form input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 9px 14px;
  width: 220px;
}

.search-form input::placeholder { color: var(--text3); }

.search-form button {
  background: none;
  padding: 9px 12px;
  color: var(--text2);
  transition: var(--transition);
}

.search-form button:hover { color: var(--red); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}

.mobile-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text2);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-menu a:hover { color: white; background: var(--bg3); }

.mobile-search {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.mobile-search input {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

.mobile-search button {
  background: var(--red);
  color: white;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,15,0.98) 0%,
    rgba(10,10,15,0.7) 50%,
    rgba(10,10,15,0.2) 100%
  ),
  linear-gradient(
    to top,
    rgba(10,10,15,1) 0%,
    rgba(10,10,15,0.4) 40%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 68px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 16px;
  max-width: 700px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.8);
}

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

.hero-meta span {
  font-size: 13px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-meta .rating {
  color: var(--gold);
  font-weight: 700;
}

.hero-overview {
  color: var(--text2);
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: none;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 56px 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: var(--red);
  border-radius: 2px;
}

.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.section-link:hover { color: white; }

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.cards-grid.large {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* ===== MOVIE CARD ===== */
.card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.7);
  border-color: var(--red);
  background: var(--card-hover);
  z-index: 2;
}

.card-poster {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-poster img { transform: scale(1.08); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.95) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  gap: 8px;
}

.card:hover .card-overlay { opacity: 1; }

.card-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  margin: 0 auto 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--red-glow);
}

.card-play:hover { transform: scale(1.1); }

.card-play svg { color: white; }

.card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-hd { background: var(--red); color: white; }
.badge-new { background: var(--green); color: #000; }
.badge-rating {
  background: rgba(0,0,0,0.8);
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 3px;
  backdrop-filter: blur(4px);
}

.card-info {
  padding: 12px;
}

.card-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text2);
}

.card-rating {
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ===== HORIZONTAL SLIDER ===== */
.slider-wrap {
  position: relative;
}

.slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.slider::-webkit-scrollbar { display: none; }

.slider .card {
  min-width: 180px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,10,15,0.9);
  border: 1px solid var(--border);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.slider-btn:hover { background: var(--red); border-color: var(--red); }
.slider-btn.prev { left: -20px; }
.slider-btn.next { right: -20px; }

/* ===== HERO SLIDER DOTS ===== */
.hero-dots {
  position: absolute;
  bottom: 32px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--red);
  width: 24px;
}

/* ===== GENRE FILTERS ===== */
.genre-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.genre-btn {
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.genre-btn:hover,
.genre-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* ===== WATCH/PLAYER PAGE ===== */
.watch-page {
  padding-top: 88px;
  min-height: 100vh;
}

.player-wrap {
  background: #000;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(229,9,20,0.2);
  border: 1px solid rgba(229,9,20,0.3);
}

.player-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.player-sources {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.source-btn {
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.source-btn:hover,
.source-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.movie-detail {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-top: 48px;
}

.detail-poster {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.detail-info h1 {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.detail-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text2);
  padding: 5px 12px;
  background: var(--bg3);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.detail-meta-item.rating-item { color: var(--gold); }

.detail-genres {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.genre-tag {
  padding: 5px 14px;
  border-radius: 16px;
  background: rgba(229,9,20,0.15);
  border: 1px solid rgba(229,9,20,0.3);
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
}

.detail-overview {
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 15px;
}

.detail-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.cast-card {
  text-align: center;
}

.cast-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 8px;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.cast-card:hover img { border-color: var(--red); }

.cast-name { font-size: 13px; font-weight: 600; }
.cast-char { font-size: 12px; color: var(--text2); }

/* ===== TV SEASONS ===== */
.seasons-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.season-tab {
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  transition: var(--transition);
}

.season-tab:hover,
.season-tab.active { background: var(--red); border-color: var(--red); color: white; }

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.episode-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.episode-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.episode-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg3);
}

.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-num {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.ep-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: var(--transition);
}

.episode-card:hover .ep-play-icon { opacity: 1; }

.episode-info { padding: 12px; }
.episode-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.episode-info p { font-size: 12px; color: var(--text2); }

/* ===== SEARCH RESULTS ===== */
.search-header {
  padding: 100px 0 40px;
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
}

.search-header h1 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
}

.search-header p { color: var(--text2); margin-top: 8px; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 100px 0 48px;
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.page-header p { color: var(--text2); }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.page-btn:hover,
.page-btn.active { background: var(--red); border-color: var(--red); color: white; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red);
  letter-spacing: 2px;
}

.stat-label {
  font-size: 12px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== LOADING ===== */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  color: var(--text2);
  font-size: 14px;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text2);
  font-size: 14px;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover { color: white; padding-left: 4px; }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text3);
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--red-glow);
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 80px 24px;
}

.empty-state svg { color: var(--text3); margin-bottom: 20px; }
.empty-state h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; margin-bottom: 8px; }
.empty-state p { color: var(--text2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .movie-detail { grid-template-columns: 200px 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .search-form { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu.open { display: flex; }

  .hero h1 { font-size: 36px; }
  .hero-overview { display: none; }

  .movie-detail { grid-template-columns: 1fr; }
  .detail-poster { max-width: 240px; }
  .detail-info h1 { font-size: 32px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cards-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .stats-inner { gap: 24px; }
  .slider-btn { display: none; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}

/* ===== LIVE SPORTS NAV BADGE ===== */
.nav-sports-link {
  position: relative;
}

.nav-live-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
  animation: badge-pulse 2s infinite;
}

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