/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-main: #000000;
  --bg-card: #141414;
  --bg-card-alt: #191919;
  --red: #ff0000;
  --red-light: #ff2323;
  --red-gradient: linear-gradient(135deg, #ff2323, #ff0000);
  --text-main: #ffffff;
  --text-muted: #a8a8a8;
  --border-red: rgba(255, 0, 0, 0.35);
  --gold: #f5c542;
  --gold-light: #ffe27a;
  --gold-gradient: linear-gradient(135deg, #ffe27a, #f0b90b);
  --border-gold: rgba(245, 197, 66, 0.4);
  --green: #00b900;
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Prompt", "Noto Sans Thai", "Leelawadee UI", "Thonburi", "Sarabun", "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-accent {
  color: var(--red-light);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red-gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.5);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo-icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}

.main-nav.open {
  display: flex;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--bg-main);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 20px 20px;
}

.main-nav.open a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.main-nav.open .nav-cta {
  margin-top: 14px;
  border-bottom: none;
  text-align: center;
}

.main-nav a {
  color: var(--text-main);
  opacity: 0.85;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--red-light);
}

.nav-cta {
  opacity: 1 !important;
  padding: 10px 22px;
  font-size: 14px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 0 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(280px circle at 50% 0%, rgba(255, 0, 0, 0.35), transparent 70%),
    linear-gradient(180deg, #1a0507 0px, #000000 200px);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-visual {
  width: 100%;
  margin: 0 0 10px;
}

.hero-visual-crop {
  position: relative;
  width: 100%;
  padding-bottom: 78%;
  max-height: 700px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 89%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 89%, transparent 100%);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.feature-item {
  min-width: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-icon {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.feature-item p {
  font-size: 13px;
  font-weight: 600;
}

.feature-item small {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ===== Pricing ===== */
.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 460px;
  margin: 0 auto;
  scroll-margin-top: 90px;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  padding: 30px 22px 22px;
  text-align: left;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.15);
}

.price-card-premium {
  border-color: var(--border-gold);
  box-shadow: 0 0 30px rgba(245, 197, 66, 0.18);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.badge-popular {
  background: var(--red-gradient);
  color: #fff;
}

.badge-premium {
  background: var(--gold-gradient);
  color: #2a1d00;
}

.price-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.price-was-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.price-was {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: line-through;
}

.price-discount {
  background: rgba(255, 0, 0, 0.15);
  color: var(--red-light);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.price-discount-gold {
  background: rgba(245, 197, 66, 0.18);
  color: var(--gold-light);
}

.price-value {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 14px;
}

.price-currency {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  padding-bottom: 6px;
}

.price-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.price-unit {
  font-size: 14px;
  color: var(--text-muted);
  padding-bottom: 8px;
}

.price-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.price-highlights li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.highlight-save {
  color: var(--green);
}

.highlight-coin {
  color: var(--gold-light);
}

.hl-icon {
  font-size: 12px;
}

.price-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 18px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #dcdcdc;
  line-height: 1.5;
}

.feat-check {
  flex-shrink: 0;
  color: var(--green);
  font-weight: 700;
}

.btn-package {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
}

.btn-package-red {
  background: var(--red-gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.35);
}

.btn-package-gold {
  background: var(--gold-gradient);
  color: #2a1d00;
  box-shadow: 0 8px 20px rgba(245, 197, 66, 0.35);
}

/* ===== Section Titles ===== */
.section-title-plain {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 60px 0;
  background: var(--bg-card-alt);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  background: var(--bg-main);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-number {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.step small {
  color: var(--text-muted);
  font-size: 12px;
}

.step-arrow {
  display: none;
  color: var(--red-light);
  font-size: 22px;
}

/* ===== Devices ===== */
.devices {
  padding: 60px 0;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 22px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.device-icon {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* ===== Reviews ===== */
.reviews {
  padding: 60px 0;
  background: var(--bg-card-alt);
}

.review-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--bg-main);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  padding: 22px;
}

.stars {
  color: #ffb400;
  font-size: 16px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 14px;
  color: #dcdcdc;
  margin-bottom: 18px;
  min-height: 66px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.reviewer strong {
  display: block;
  font-size: 14px;
}

.reviewer small {
  color: var(--text-muted);
  font-size: 12px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.review-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease;
}

.review-dots span.active {
  background: var(--red-light);
}

/* ===== Final CTA ===== */
.final-cta {
  padding: 70px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.25), transparent 60%);
}

.final-cta h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 26px;
  line-height: 1.5;
}

/* ===== Footer ===== */
.site-footer {
  background: #050505;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--red-light);
}

.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.copyright {
  text-align: center;
  color: #666;
  font-size: 12px;
  margin-top: 26px;
}

/* ===== Floating Action Buttons ===== */
.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.floating-btn:hover {
  transform: translateY(-2px);
}

.floating-icon {
  font-size: 15px;
  line-height: 1;
}

.floating-btn-line {
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 185, 0, 0.55), 0 4px 14px rgba(0, 0, 0, 0.35);
}

.floating-btn-line:hover {
  box-shadow: 0 0 24px rgba(0, 185, 0, 0.75), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-btn-telegram {
  background: #0088cc;
  box-shadow: 0 0 18px rgba(0, 136, 204, 0.55), 0 4px 14px rgba(0, 0, 0, 0.35);
}

.floating-btn-telegram:hover {
  box-shadow: 0 0 24px rgba(0, 136, 204, 0.75), 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* ======================================================
   DESKTOP / TABLET (min-width: 768px)
====================================================== */
@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .hero-features {
    grid-template-columns: repeat(6, 1fr);
  }

  .pricing-cards {
    flex-direction: row;
    align-items: stretch;
    max-width: 820px;
  }

  .price-card {
    flex: 1;
    padding: 34px 28px 28px;
  }

  .price-number {
    font-size: 52px;
  }

  .section-title-plain {
    font-size: 32px;
  }

  .steps {
    flex-direction: row;
    align-items: stretch;
  }

  .step {
    flex: 1;
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .step-arrow {
    display: flex;
    align-items: center;
  }

  .device-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .review-track {
    overflow: visible;
  }

  .review-card {
    flex: 1;
  }

  .review-dots {
    display: none;
  }

  .final-cta h2 {
    font-size: 32px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .hero-visual-crop {
    max-height: 760px;
  }
}

/* ===== Download App Page ===== */
.download-page {
  padding: 30px 0 70px;
}

.download-topbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.btn-ghost:hover {
  background: var(--bg-card-alt);
}

.download-header {
  border-left: 4px solid var(--red);
  padding-left: 16px;
  margin-bottom: 34px;
}

.download-header h1 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.download-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}

.platform-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.platform-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.platform-icon-ios {
  background: #3a3a3c;
}

.platform-icon-android {
  background: #2ecc71;
}

.platform-icon-pc {
  background: transparent;
}

.platform-icon-pc img {
  width: 100%;
  height: 100%;
}

.platform-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.platform-desc {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.platform-spacer {
  flex: 1;
}

.platform-steps {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.platform-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #dcdcdc;
  line-height: 1.6;
}

.platform-step-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.platform-video-link {
  display: block;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.platform-video-link:hover {
  color: var(--text-main);
}

@media (min-width: 768px) {
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .download-header h1 {
    font-size: 32px;
  }

  .download-topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ===== Promo Popup ===== */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.promo-popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.promo-popup-box {
  position: relative;
  max-width: 420px;
  width: 100%;
}

.promo-popup-box img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.promo-popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  border: 0;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ===== Movies & Sports Channels Page ===== */
.content-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.25), transparent 60%);
}

.content-hero h1 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.content-hero p {
  color: var(--text-muted);
  font-size: 14px;
}

.content-section {
  padding: 50px 0;
}

.content-section.alt {
  background: var(--bg-card-alt);
}

/* Movie poster carousel */
.movie-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.movie-track::-webkit-scrollbar {
  display: none;
}

.movie-card {
  flex: 0 0 130px;
  scroll-snap-align: start;
}

.movie-poster {
  position: relative;
  width: 130px;
  height: 185px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 10px;
}

.movie-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 0, 0, 0.35), rgba(0, 0, 0, 0.85));
}

.movie-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.movie-poster .poster-icon {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.movie-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--red-gradient);
  color: #fff;
}

.movie-card h3 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.movie-card .genre {
  font-size: 11px;
  color: var(--text-muted);
}

.movie-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.movie-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease;
}

.movie-dots span.active {
  background: var(--red-light);
}

/* Sports channel grid */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.channel-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
}

.channel-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.channel-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.channel-card .league {
  font-size: 12px;
  color: var(--text-muted);
}

.channel-live {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--red-gradient);
  color: #fff;
}

@media (min-width: 768px) {
  .movie-card {
    flex: 0 0 160px;
  }

  .movie-poster {
    width: 160px;
    height: 225px;
  }

  .channel-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
