/* ============================================================
   LastTV – Netflix-style Dark Theme
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ltv-bg: #0f0f0f;
  --ltv-surface: #1a1a1a;
  --ltv-surface2: #242424;
  --ltv-border: rgba(255, 255, 255, 0.08);
  --ltv-red: #e50914;
  --ltv-red-dark: #b20710;
  --ltv-gold: #f5c518;
  --ltv-text: #e0e0e0;
  --ltv-text-muted: #888;
  --ltv-white: #ffffff;
  --ltv-radius: 10px;
  --ltv-radius-lg: 18px;
  --ltv-shadow: 0 8px 32px rgba(0, 0, 0, .5);
  --ltv-transition: 0.25s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', system-ui, sans-serif;
}

/* ── Premium Badge ─────────────────────────────────────────── */
.premium-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--ltv-gold);
  color: #000;
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 3px;
}

.premium-badge i {
  font-size: 0.75rem;
}

/* ── Global Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ltv-bg);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 5px;
  border: 2px solid var(--ltv-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ltv-red);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--ltv-bg);
  color: var(--ltv-text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

/* Add padding for fixed header */
#ltv-main {
  padding-top: 75px;
}

/* On watch page, adjust top padding to prevent fixed header overlap */
.watch-page-active #ltv-main {
  padding-top: 75px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--ltv-bg);
}

::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}

/* ── Header / Navbar ────────────────────────────────────────── */
.ltv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 15px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  border-bottom: none;
  backdrop-filter: none;
  transition: all 0.4s ease;
}

.ltv-header.scrolled {
  background-color: #0f0f0f;
  padding: 10px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.navbar {
  padding: 0;
}

/* Logo */
.ltv-logo {
  text-decoration: none;
}

.logo-text {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -.5px;
  color: var(--ltv-white);
}

.logo-tv {
  color: var(--ltv-red);
}

/* Nav links */
.navbar .nav-link {
  color: var(--ltv-text) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: color var(--ltv-transition), background var(--ltv-transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--ltv-white) !important;
  background: rgba(255, 255, 255, .08);
}

/* Search */
.ltv-search-form {
  max-width: 280px;
}

.ltv-search-input {
  background: rgba(255, 255, 255, .1) !important;
  border: 1px solid var(--ltv-border) !important;
  color: var(--ltv-white) !important;
  font-size: .875rem;
  border-radius: var(--ltv-radius) 0 0 var(--ltv-radius) !important;
}

.ltv-search-input::placeholder {
  color: var(--ltv-text-muted);
}

.ltv-search-input:focus {
  background: rgba(255, 255, 255, .15) !important;
  box-shadow: none !important;
  border-color: rgba(255, 255, 255, .25) !important;
}

.ltv-search-btn {
  background: var(--ltv-red) !important;
  border-color: var(--ltv-red) !important;
  color: #fff !important;
  border-radius: 0 var(--ltv-radius) var(--ltv-radius) 0 !important;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-ltv-primary {
  background: var(--ltv-red);
  color: #fff;
  border: none;
  border-radius: var(--ltv-radius);
  font-weight: 600;
  transition: background var(--ltv-transition), transform var(--ltv-transition), box-shadow var(--ltv-transition);
}

.btn-ltv-primary:hover {
  background: var(--ltv-red-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(229, 9, 20, .4);
}

.btn-ltv-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: var(--ltv-radius);
  font-weight: 600;
  transition: all var(--ltv-transition);
}

.btn-ltv-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}

/* ── Hero Banner ────────────────────────────────────────────── */
.ltv-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: -75px;
  /* Offset main padding for banner pages */
}

.ltv-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.ltv-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .6) 0%,
      rgba(0, 0, 0, .1) 30%,
      rgba(0, 0, 0, .85) 80%,
      var(--ltv-bg) 100%);
}

.ltv-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2.5rem;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ltv-red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .6);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  color: var(--ltv-text-muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hero-rating {
  color: var(--ltv-gold);
  font-weight: 700;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--ltv-radius);
}

/* ── Section Headers ────────────────────────────────────────── */
.section-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ltv-white);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-heading::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--ltv-red);
  border-radius: 2px;
  display: inline-block;
}

/* ── Content Sliders ────────────────────────────────────────── */
.ltv-slider-wrap {
  position: relative;
  overflow: hidden;
}

.ltv-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.ltv-slider::-webkit-scrollbar {
  display: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, .75);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ltv-transition);
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: var(--ltv-red);
  border-color: var(--ltv-red);
}

.slider-arrow.left {
  left: 6px;
}

.slider-arrow.right {
  right: 6px;
}

/* ── Content Cards ──────────────────────────────────────────── */
.ltv-card {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--ltv-radius);
  overflow: hidden;
  background: var(--ltv-surface);
  transition: transform var(--ltv-transition), box-shadow var(--ltv-transition);
  cursor: pointer;
}

.ltv-card:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
  z-index: 2;
}

.ltv-card-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  background: var(--ltv-surface2);
}

.ltv-card-poster.lazy {
  filter: blur(4px);
  transition: filter .3s;
}

.ltv-card-poster.lazy.loaded {
  filter: none;
}

.ltv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--ltv-transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.ltv-card:hover .ltv-card-overlay {
  opacity: 1;
}

.ltv-card-title {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.ltv-card-meta {
  font-size: .7rem;
  color: var(--ltv-text-muted);
  display: flex;
  gap: 8px;
}

.ltv-card-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--ltv-red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ltv-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--ltv-red);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--ltv-transition);
}

.ltv-card:hover .ltv-card-play {
  transform: translate(-50%, -50%) scale(1);
}

/* Wide cards (16:9) */
.ltv-card-wide {
  width: 280px;
}

.ltv-card-wide .ltv-card-poster {
  aspect-ratio: 16/9;
}

/* ── Content Sections ───────────────────────────────────────── */
.ltv-section {
  padding: 2rem 0;
}

.ltv-section+.ltv-section {
  margin-top: .5rem;
}

/* ── Category Badges ────────────────────────────────────────── */
.ltv-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .1);
  color: var(--ltv-text);
  border: 1px solid var(--ltv-border);
  margin: 3px;
  transition: all var(--ltv-transition);
}

.ltv-badge:hover {
  background: var(--ltv-red);
  border-color: var(--ltv-red);
  color: #fff;
}

/* ── Rating Stars ───────────────────────────────────────────── */
.ltv-rating {
  color: var(--ltv-gold);
  font-size: .85rem;
}

/* ── Progress Bar (continue watching) ──────────────────────── */
.continue-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  border-radius: 0 0 var(--ltv-radius) var(--ltv-radius);
}

.continue-progress-bar {
  height: 100%;
  background: var(--ltv-red);
  border-radius: inherit;
}

/* ── Subscription Plans ─────────────────────────────────────── */
.plan-card {
  background: var(--ltv-surface);
  border: 1px solid var(--ltv-border);
  border-radius: var(--ltv-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--ltv-transition);
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  border-color: var(--ltv-red);
  transform: translateY(-6px);
  box-shadow: var(--ltv-shadow);
}

.active-plan-border {
  border-color: #198754 !important;
  box-shadow: 0 0 20px rgba(25, 135, 84, 0.25) !important;
}

.plan-card.featured {
  border-color: var(--ltv-red);
  background: linear-gradient(135deg, var(--ltv-surface) 0%, #1f0202 100%);
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: -24px;
  background: var(--ltv-red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 30px;
  transform: rotate(35deg);
  letter-spacing: 1px;
  display: block;
}

.plan-badge.bg-success {
  background: #198754 !important;
}

.plan-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ltv-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: .75rem;
}

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ltv-white);
  line-height: 1;
}

.plan-price sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: .5rem;
}

.plan-price sub {
  font-size: .9rem;
  font-weight: 400;
  color: var(--ltv-text-muted);
}

.plan-features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
  padding: 0;
}

.plan-features li {
  padding: 6px 0;
  font-size: .875rem;
  border-bottom: 1px solid var(--ltv-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  color: var(--ltv-red);
  font-weight: 800;
  flex-shrink: 0;
}

/* ── Auth Pages ─────────────────────────────────────────────── */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ltv-bg);
  background-image: radial-gradient(ellipse at top left, rgba(229, 9, 20, .08) 0%, transparent 60%);
  padding: 2rem 1rem;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--ltv-surface);
  border: 1px solid var(--ltv-border);
  border-radius: var(--ltv-radius-lg);
  padding: 2.5rem;
}

.auth-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ltv-white);
  margin-bottom: .5rem;
}

.auth-sub {
  color: var(--ltv-text-muted);
  font-size: .875rem;
  margin-bottom: 1.75rem;
}

.form-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ltv-text-muted);
  margin-bottom: 4px;
}

.form-control {
  background: var(--ltv-surface2) !important;
  border: 1px solid var(--ltv-border) !important;
  color: var(--ltv-text) !important;
  border-radius: var(--ltv-radius) !important;
  padding: 12px 16px !important;
}

.form-control:focus {
  border-color: var(--ltv-red) !important;
  box-shadow: 0 0 0 3px rgba(229, 9, 20, .18) !important;
  outline: none;
}

.form-control::placeholder {
  color: var(--ltv-text-muted) !important;
}

/* ── Video Player Page ──────────────────────────────────────── */
.player-wrapper {
  background: #000;
  position: relative;
  line-height: 0;
}

.player-wrapper video {
  width: 100%;
  display: block;
}

.video-js {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
}

@media (max-width: 991.98px) {
  .player-wrapper {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

/* ── Pages / Detail ─────────────────────────────────────────── */
.detail-banner {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  margin-top: -75px;
  /* Offset main padding for banner pages */
}

.detail-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, var(--ltv-bg) 100%);
}

.detail-content {
  position: relative;
  z-index: 1;
}

/* ── Admin Panel ────────────────────────────────────────────── */
/* (See admin.css) */

/* ── Footer ─────────────────────────────────────────────────── */
.ltv-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--ltv-border);
}

.footer-tagline {
  color: var(--ltv-text-muted);
  font-size: .875rem;
  margin-bottom: 0;
}

.footer-heading {
  color: var(--ltv-white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: .5rem;
}

.footer-links a {
  color: var(--ltv-text-muted);
  font-size: .875rem;
  transition: color var(--ltv-transition);
}

.footer-links a:hover {
  color: var(--ltv-white);
}

.footer-divider {
  border-color: var(--ltv-border);
}

.footer-copy {
  color: var(--ltv-text-muted);
  font-size: .82rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: var(--ltv-surface);
  border: 1px solid var(--ltv-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ltv-text-muted);
  transition: all var(--ltv-transition);
}

.social-btn:hover {
  background: var(--ltv-red);
  border-color: var(--ltv-red);
  color: #fff;
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-muted-ltv {
  color: var(--ltv-text-muted) !important;
}

.text-red {
  color: var(--ltv-red) !important;
}

.bg-surface {
  background: var(--ltv-surface) !important;
}

.bg-surface2 {
  background: var(--ltv-surface2) !important;
}

.border-ltv {
  border-color: var(--ltv-border) !important;
}

.rounded-ltv {
  border-radius: var(--ltv-radius) !important;
}

.shadow-ltv {
  box-shadow: var(--ltv-shadow) !important;
}

/* ── Loading Skeleton ───────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--ltv-surface) 25%, var(--ltv-surface2) 50%, var(--ltv-surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: var(--ltv-radius);
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ── Pagination ─────────────────────────────────────────────── */
.page-link {
  background: var(--ltv-surface) !important;
  border-color: var(--ltv-border) !important;
  color: var(--ltv-text) !important;
}

.page-link:hover {
  background: var(--ltv-red) !important;
  color: #fff !important;
}

.page-item.active .page-link {
  background: var(--ltv-red) !important;
  border-color: var(--ltv-red) !important;
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .ltv-header .navbar-collapse {
    background: var(--ltv-bg);
    margin: 0 -1rem;
    padding: 1rem;
    border-top: 1px solid var(--ltv-border);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  /* Space for navbar */
  .ltv-hero {
    min-height: 55vh;
  }

  .ltv-hero-content {
    padding: 2rem 0 1.5rem;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  }

  .hero-meta {
    gap: 0.5rem;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 1.25rem;
  }

  .hero-actions .btn {
    padding: 10px 20px;
    font-size: .9rem;
    width: 100%;
  }

  .ltv-card {
    width: 140px;
  }

  /* Always show info overlay on mobile cards */
  .ltv-card-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 60%);
    padding: 10px;
  }

  .ltv-card-tag {
    font-size: 0.55rem;
    padding: 2px 5px;
    top: 5px;
    left: 5px;
  }

  .premium-badge {
    font-size: 0.5rem;
    padding: 2px 4px;
    top: 5px;
    right: 5px;
  }

  .ltv-card-wide {
    width: 200px;
  }

  .plan-card {
    padding: 1.5rem 1rem;
  }

  .ltv-search-form {
    max-width: 100%;
    margin-top: 10px;
  }

  .auth-card {
    padding: 1.5rem;
    margin-top: 1rem;
    border: none;
  }

  /* Compact forms for small screens */
  .auth-wrapper {
    align-items: flex-start;
    padding-top: 10%;
  }

  .auth-title {
    font-size: 1.5rem;
  }

  /* Mobile Nav Bar */
  .ltv-mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
  }

  .ltv-mobile-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .ltv-mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--ltv-text-muted) !important;
    text-decoration: none;
    transition: all var(--ltv-transition);
  }

  .ltv-mobile-nav-link i {
    font-size: 1.25rem;
  }

  .ltv-mobile-nav-link span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .ltv-mobile-nav-link.active {
    color: var(--ltv-red) !important;
  }

  .ltv-mobile-nav-link:active {
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  .ltv-card {
    width: 125px;
  }

  .section-heading {
    font-size: 1.1rem;
  }

  .ltv-logo .logo-text {
    font-size: 1.5rem;
  }

  .auth-card {
    padding: 1.25rem;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }
}

/* ── Responsive Refinements ─────────────────────────────────── */
@media (max-width: 991px) {
  .watch-page-active #ltv-main {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .ltv-logo .logo-text {
    font-size: 1.5rem;
  }

  .btn-ltv-primary,
  .btn-ltv-outline {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Up Next improvements */
  .up-next-section h5 {
    font-size: 1.1rem;
    margin-top: 1rem;
    border-bottom: 1px solid var(--ltv-border);
    padding-bottom: 0.5rem;
  }
}