/* ============================================================
   Best IPTV – 2026 Premium Redesign
   Aesthetic: Dark cinematic glassmorphism, gradient accents
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-body: #060b18;
  --bg-section: #0a1128;
  --bg-card: rgba(15, 25, 55, 0.7);
  --bg-card-solid: #0f1937;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(59, 130, 246, 0.3);
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --accent: #8b5cf6;
  --success: #22c55e;
  --gold: #f59e0b;
  --danger: #ef4444;
  --text-white: #f0f4ff;
  --text-muted: #8b9dc3;
  --text-dim: #5a6b8a;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.08);
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-body);
  color: var(--text-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--tr)
}

a:hover {
  color: #60a5fa
}

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 11, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px
}

.logo span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.15rem;
  align-items: center
}

.nav-links a {
  color: var(--text-muted);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--tr)
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: var(--bg-glass)
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3)
}

.nav-cta:hover {
  box-shadow: 0 4px 28px rgba(59, 130, 246, 0.5);
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--tr)
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.14) 0%, transparent 55%), radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.09) 0%, transparent 55%), radial-gradient(circle at 50% 50%, rgba(6, 11, 24, 0) 0%, var(--bg-body) 80%);
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  pointer-events: none
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-30px, 20px) scale(1.05)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px)
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4)
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0)
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #fff 0%, #93c5fd 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px
}

.hero p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--tr);
  border: none;
  text-decoration: none
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.35)
}

.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
  color: #fff
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px)
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap
}

.hero-stat {
  text-align: center
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: block;
  letter-spacing: -0.5px
}

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--text-dim)
}

/* ---- MAIN CONTENT ---- */
.main-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 4rem
}

.main-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff
}

.main-content h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  margin: 3rem 0 1rem;
  color: #fff;
  line-height: 1.25
}

.main-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.6rem;
  color: var(--text-white)
}

.main-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text-white)
}

.main-content p {
  color: var(--text-muted);
  margin-bottom: 1rem
}

.main-content strong {
  color: var(--text-white)
}

.main-content section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border)
}

.main-content section:last-of-type {
  border-bottom: none
}

.main-content ul,
.main-content ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
  color: var(--text-muted)
}

.main-content li {
  margin-bottom: 0.6rem;
  padding-left: 0.25rem
}

.main-content li strong {
  color: var(--text-white)
}

.main-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
  border: 1px solid var(--border)
}

.main-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-glass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0
}

.main-content blockquote p {
  color: var(--text-white);
  margin: 0;
  font-style: italic
}

.main-content blockquote cite {
  color: var(--text-dim);
  font-size: 0.9rem;
  display: block;
  margin-top: 0.5rem;
  font-style: normal
}

.main-content table:not(.comparison-table) {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden
}

.main-content table:not(.comparison-table) thead tr {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent))
}

.main-content table:not(.comparison-table) th {
  padding: 12px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left
}

.main-content table:not(.comparison-table) td {
  padding: 12px 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border)
}

.main-content table:not(.comparison-table) tbody tr {
  background: var(--bg-card-solid);
  transition: background var(--tr)
}

.main-content table:not(.comparison-table) tbody tr:hover {
  background: rgba(59, 130, 246, 0.06)
}

.main-content table:not(.comparison-table) tbody tr:nth-child(even) {
  background: rgba(15, 25, 55, 0.5)
}

/* ---- SECTION HEADING ---- */
.section-heading {
  text-align: center;
  margin-bottom: 3rem
}

.section-heading h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto
}

/* ---- FEATURES GRID ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(10px);
  transition: all var(--tr);
  position: relative;
  overflow: hidden
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--tr)
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow)
}

.feature-card:hover::before {
  opacity: 1
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem
}

.feature-icon.blue {
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary)
}

.feature-icon.purple {
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent)
}

.feature-icon.green {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success)
}

.feature-icon.gold {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold)
}

.feature-icon.red {
  background: rgba(239, 68, 68, 0.12);
  color: var(--danger)
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.6rem
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.65
}

/* ---- PRICING ---- */
.pricing-section {
  padding: 4rem 0
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all var(--tr);
  backdrop-filter: blur(10px);
  overflow: hidden
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--tr)
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), var(--shadow-glow)
}

.pricing-card:hover::before {
  opacity: 1
}

.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, var(--bg-card) 50%);
  transform: scale(1.03)
}

.pricing-card.popular::before {
  opacity: 1;
  height: 3px
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px)
}

.pricing-badge-tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 1.5rem;
  border-radius: 0 0 12px 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.pricing-card.best-value {
  border-color: var(--success);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.06) 0%, var(--bg-card) 50%)
}

.pricing-card.best-value::before {
  opacity: 1;
  background: linear-gradient(90deg, #16a34a, #059669);
  height: 3px
}

.pricing-card.best-value .pricing-badge-tag {
  background: linear-gradient(135deg, #16a34a, #059669)
}

.pricing-duration {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  margin-top: 0.75rem
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0.75rem 0;
  letter-spacing: -1px
}

.pricing-price .currency {
  font-size: 1.5rem;
  vertical-align: super
}

.pricing-price .period {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
  display: block;
  margin-top: 0.3rem;
  letter-spacing: 0
}

.pricing-save {
  display: inline-block;
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem
}

.pricing-monthly {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 1.25rem
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03)
}

.pricing-features li:last-child {
  border-bottom: none
}

.pricing-features .check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  border: 1.5px solid var(--border);
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all var(--tr);
  margin-top: 0.5rem
}

.pricing-btn:hover {
  background: var(--bg-glass);
  border-color: var(--primary);
  color: #fff
}

.pricing-card.popular .pricing-btn,
.pricing-card.best-value .pricing-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3)
}

.pricing-card.popular .pricing-btn:hover,
.pricing-card.best-value .pricing-btn:hover {
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
  transform: translateY(-1px)
}

.payment-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  align-items: center
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.85rem
}

/* ---- TRUST GRID ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--tr)
}

.trust-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow)
}

.trust-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.trust-label {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.25rem
}

/* ---- STEPS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0
}

.step-card {
  text-align: center;
  position: relative
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--tr)
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px)
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0
}

.testimonial-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem
}

.testimonial-location {
  color: var(--text-dim);
  font-size: 0.8rem
}

/* ---- DEVICE GRID ---- */
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin: 2rem 0
}

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--tr)
}

.device-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow)
}

.device-card .device-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block
}

.device-card h4 {
  color: #fff;
  font-size: 0.9rem;
  margin: 0 0 0.3rem
}

.device-card p {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 0
}

/* ---- TOC ---- */
.iptv-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0
}

.iptv-toc h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem
}

.iptv-toc ol {
  padding-left: 1.2rem;
  margin: 0
}

.iptv-toc li {
  padding: 0.3rem 0;
  font-size: 0.9rem
}

.iptv-toc a {
  color: var(--primary)
}

/* ---- CTA BOX ---- */
.iptv-cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  overflow: hidden
}

.iptv-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary))
}

.iptv-cta-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.6rem
}

.iptv-cta-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem
}

.iptv-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  transition: all var(--tr);
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.3)
}

.iptv-cta-button:hover {
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
  color: #fff
}

.iptv-cta-subtext {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-top: 0.75rem
}

/* ---- FAQ ---- */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--tr)
}

.faq-item:hover {
  border-color: var(--border-glow)
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  transition: color var(--tr)
}

.faq-question:hover {
  color: var(--primary)
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: transform var(--tr);
  flex-shrink: 0;
  margin-left: 1rem
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7
}

.faq-section {
  margin: 2rem 0
}

/* ---- RELATED ---- */
.iptv-related-articles {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0
}

.iptv-related-articles h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem
}

.iptv-related-articles ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.iptv-related-articles li {
  padding: 0.4rem 0
}

.iptv-related-articles a {
  color: var(--primary);
  font-size: 0.92rem
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.82rem;
  color: var(--text-dim)
}

.breadcrumb a {
  color: var(--text-dim)
}

.breadcrumb a:hover {
  color: var(--primary)
}

/* ---- INFO BOX ---- */
.info-box {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0
}

.info-box h4 {
  color: var(--primary);
  font-size: 0.95rem;
  margin: 0 0 0.5rem
}

.info-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0
}

/* ---- GUARANTEE BOX ---- */
.guarantee-box {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.02));
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0
}

/* ---- COMPARISON TABLE ---- */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 2.5rem 0;
  padding-bottom: 1rem;
  padding-top: 20px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: center;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: #fff;
  width: 28%;
  padding-left: 24px;
}

.comparison-table thead th {
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 24px;
}

.comparison-table thead th.highlight-col {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  color: #fff;
  border-radius: 20px 20px 0 0;
  border-bottom: none;
  font-size: 1.1rem;
  box-shadow: 0 -10px 40px rgba(59, 130, 246, 0.2);
  position: relative;
}

.comparison-table thead th.highlight-col::after {
  content: "BEST CHOICE";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.comparison-table tbody td {
  color: var(--text-muted);
  transition: background var(--tr);
}

.comparison-table tbody tr {
  background: var(--bg-card-solid);
}

.comparison-table tbody tr:hover td {
  background: rgba(59, 130, 246, 0.03);
}

.comparison-table tbody td.highlight-col {
  background: rgba(59, 130, 246, 0.1);
  color: #fff;
  font-weight: 600;
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.comparison-table tbody tr:hover td.highlight-col {
  background: rgba(59, 130, 246, 0.15);
}

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

.comparison-table tbody tr:last-child td.highlight-col {
  border-radius: 0 0 20px 20px;
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.comparison-table .icon-check {
  color: var(--success);
  font-weight: 800;
  font-size: 1.2rem;
  margin-right: 6px;
}

.comparison-table .icon-cross {
  color: var(--danger);
  font-size: 1rem;
  margin-right: 6px;
  opacity: 0.8;
}

/* ---- PRODUCT PAGE ---- */
.product-hero-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto 2rem
}

.product-price-tag {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px
}

.order-form label {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  font-weight: 500
}

.order-form input,
.order-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  transition: border-color var(--tr)
}

.order-form input:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--primary)
}

.order-form select option {
  background: var(--bg-card-solid);
  color: #fff
}

.order-btn {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--tr);
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.3)
}

.order-btn:hover {
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px)
}

.pricing-hero {
  text-align: center;
  padding: 2rem 0 1rem
}

.pricing-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem
}

.pricing-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto
}

.pricing-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem
}

.pricing-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.88rem
}

.pricing-badge .check {
  color: var(--success);
  font-weight: bold
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  flex-wrap: wrap
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 1.5rem;
  margin-top: 4rem
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-col li {
  margin-bottom: 0.5rem
}

.footer-col a {
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: color var(--tr)
}

.footer-col a:hover {
  color: var(--primary)
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem
}

/* ---- WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--tr)
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6)
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff
}

/* ---- RESPONSIVE ---- */
@media(max-width:768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #060b18;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    z-index: 998;
    overflow-y: auto
  }

  .nav-links.active {
    display: flex
  }

  .nav-links a {
    font-size: 1.15rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-xs);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(59, 130, 246, 0.1);
    color: #fff
  }

  .hamburger {
    display: flex;
    z-index: 1001
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
  }

  .hero {
    min-height: 70vh;
    padding: 3rem 1.25rem 2rem
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem)
  }

  .hero-stats {
    gap: 1.5rem
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .pricing-grid {
    grid-template-columns: 1fr
  }

  .pricing-card.popular {
    transform: none
  }

  .pricing-card.popular:hover {
    transform: translateY(-6px)
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps-grid {
    grid-template-columns: 1fr
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

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

  .main-content {
    padding: 0 1rem 3rem
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:480px) {
  .trust-grid {
    grid-template-columns: 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

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

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards
}

.fade-up-d1 {
  animation-delay: 0.1s;
  opacity: 0
}

.fade-up-d2 {
  animation-delay: 0.2s;
  opacity: 0
}

.fade-up-d3 {
  animation-delay: 0.3s;
  opacity: 0
}

.fade-up-d4 {
  animation-delay: 0.4s;
  opacity: 0
}

/* Subpage H1 */
.main-content>article>h1:first-of-type {
  text-align: center;
  padding-top: 2rem;
  background: linear-gradient(135deg, #fff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ============ PRODUCT CONFIGURATOR (WooCommerce-style) ============ */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0 3rem;
  align-items: start
}

.product-gallery {
  position: sticky;
  top: 90px
}

.product-gallery img {
  border-radius: 20px;
  border: 1px solid var(--border);
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3)
}

.product-gallery .gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem
}

.product-gallery .gallery-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--tr);
  opacity: 0.6
}

.product-gallery .gallery-thumb.active,
.product-gallery .gallery-thumb:hover {
  border-color: var(--primary);
  opacity: 1
}

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

.product-info h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.25
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem
}

.product-rating .stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 1px
}

.product-rating .count {
  color: var(--text-dim);
  font-size: 0.85rem
}

.product-price-range {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px
}

.product-price-range .old-price {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 1.1rem;
  font-weight: 400;
  margin-left: 0.5rem
}

.product-short-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7
}

.product-short-desc strong {
  color: var(--text-white)
}

/* Sale countdown */
.sale-countdown {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem
}

.sale-countdown .sale-icon {
  font-size: 1.2rem
}

.sale-countdown .sale-text {
  color: var(--gold);
  font-weight: 600
}

.sale-countdown .sale-timer {
  color: var(--text-white);
  font-weight: 700;
  font-family: monospace;
  font-size: 1rem
}

/* Config form */
.product-config {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem
}

.config-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem
}

.config-group label {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem
}

.config-group label .required {
  color: var(--danger)
}

.config-group .config-hint {
  color: var(--text-dim);
  font-size: 0.78rem;
  margin-top: 0.15rem
}

.config-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--tr);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b9dc3' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center
}

.config-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15)
}

.config-group select option {
  background: var(--bg-card-solid);
  color: #fff;
  padding: 0.5rem
}

/* Duration pills (alternative to dropdown) */
.duration-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem
}

.duration-pill {
  padding: 0.7rem 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  text-align: center;
  cursor: pointer;
  transition: all var(--tr);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit
}

.duration-pill:hover {
  border-color: var(--primary);
  color: #fff
}

.duration-pill.active {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.1);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15)
}

.duration-pill .pill-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.2rem
}

.duration-pill .pill-save {
  display: block;
  font-size: 0.7rem;
  color: var(--success);
  margin-top: 0.15rem
}

/* Price totals */
.product-totals {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-muted)
}

.total-row.final {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem
}

.total-row.final .total-label {
  font-weight: 700;
  color: #fff;
  font-size: 1rem
}

.total-row.final .total-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px
}

.total-row .total-label {
  font-weight: 500
}

.total-row .total-value {
  font-weight: 600;
  color: var(--text-white)
}

/* Buy button */
.buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--tr);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.3);
  text-decoration: none
}

.buy-btn:hover {
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
  color: #fff
}

.buy-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff
}

.buy-btn-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--tr);
  margin-top: 0.75rem;
  text-decoration: none
}

.buy-btn-alt:hover {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.06);
  color: #fff
}

/* Trust badges below button */
.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  justify-content: center
}

.product-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-dim);
  font-size: 0.78rem
}

.product-trust-badge .badge-icon {
  font-size: 1rem
}

/* Viewers badge */
.viewers-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  width: fit-content
}

.viewers-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite
}

/* Product tabs / description below */
.product-tabs {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem
}

@media(max-width:768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .product-gallery {
    position: static
  }

  .duration-pills {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ============ CHANNEL LIST GRID ============ */
.channel-section {
  margin: 2rem 0
}

.channel-category {
  margin-bottom: 2.5rem
}

.channel-category-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border)
}

.channel-category-title h3 {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
  margin: 0
}

.channel-category-title .cat-icon {
  font-size: 1.3rem
}

.channel-category-title .cat-count {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.6rem;
  border-radius: 50px
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.6rem
}

.channel-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.3rem;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: all var(--tr);
  cursor: default
}

.channel-logo:hover {
  border-color: var(--border-glow);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px)
}

.channel-logo img {
  width: 80px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px
}

.channel-logo span {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px
}

/* Scrolling marquee for channel logos */
.channel-marquee {
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0
}

.channel-marquee::before,
.channel-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none
}

.channel-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-body), transparent)
}

.channel-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-body), transparent)
}

.channel-scroll {
  display: flex;
  gap: 1rem;
  animation: scrollChannels 30s linear infinite;
  width: max-content
}

.channel-scroll:hover {
  animation-play-state: paused
}

@keyframes scrollChannels {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.channel-scroll .channel-logo {
  flex-shrink: 0;
  padding: 0.5rem 0.6rem;
  min-width: 100px
}

@media(max-width:768px) {
  .channel-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.4rem
  }

  .channel-logo img {
    width: 65px;
    height: 32px
  }

  .channel-logo span {
    font-size: 0.6rem
  }
}

/* ============ POSTER GRID (Movies & Series) ============ */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0
}

.poster-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--tr);
  cursor: default
}

.poster-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2)
}

.poster-card img {
  width: 100%;
  height: auto;
  display: block
}

.poster-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(229, 9, 20, 0.9);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px
}

/* Horizontal scroll for posters */
.poster-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch
}

.poster-scroll::-webkit-scrollbar {
  height: 4px
}

.poster-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px
}

.poster-scroll .poster-card {
  flex-shrink: 0;
  width: 150px;
  scroll-snap-align: start
}

/* Sport league grid */
.league-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0
}

.league-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: all var(--tr)
}

.league-card:hover {
  border-color: var(--border-glow);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px)
}

.league-card img {
  width: 100px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px
}

.league-card span {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center
}

@media(max-width:768px) {
  .poster-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.6rem
  }

  .league-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.5rem
  }
}

/* ============ PRICING HERO CARD ============ */
.pricing-hero-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 2.5rem;
  margin: 2rem 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15)
}

.pricing-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--success))
}

.pricing-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--success), #059669);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px
}

.pricing-hero-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center
}

.pricing-hero-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem
}

.pricing-hero-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem
}

.pricing-hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem
}

.pricing-hero-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted)
}

.phf-check {
  color: var(--success);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0
}

.pricing-hero-right {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px
}

.pricing-hero-old {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 0.25rem
}

.pricing-hero-old s {
  color: var(--danger)
}

.pricing-hero-amount {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px
}

.pricing-currency {
  font-size: 2rem;
  vertical-align: super;
  font-weight: 700
}

.pricing-per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dim)
}

.pricing-hero-monthly {
  color: var(--success);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.25rem
}

.pricing-other-plans {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem
}

@media(max-width:768px) {
  .pricing-hero-card {
    padding: 1.5rem
  }

  .pricing-hero-row {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .pricing-hero-features {
    grid-template-columns: 1fr
  }

  .pricing-hero-right {
    padding: 1.5rem
  }

  .pricing-hero-amount {
    font-size: 3rem
  }
}

/* ============ HERO SECTION IMPROVEMENTS ============ */
.hero-btns .btn {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 50px;
  font-weight: 700
}

.hero-btns .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.35)
}

.hero-btns .btn-primary:hover {
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
  color: #fff
}

.hero-btns .btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25)
}

.hero-btns .btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff
}

/* ============ POSTER CARDS REAL IMAGES ============ */
.poster-card img {
  width: 150px;
  height: 225px;
  object-fit: cover;
  border-radius: 10px;
  display: block
}

.poster-scroll .poster-card {
  width: 150px
}