:root {
  --bg: #050304;
  --bg-2: #12070a;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.13);
  --text: #fff8ed;
  --muted: #cabdb5;
  --accent: #e50914;
  --accent-2: #f5c04d;
  --accent-3: #1ea7ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 18% 5%, rgba(229, 9, 20, 0.18), transparent 28%), radial-gradient(circle at 88% 22%, rgba(30, 167, 255, 0.16), transparent 26%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.08; margin: 0 0 1rem; }
h1 { font-size: clamp(2.5rem, 6vw, 5.75rem); letter-spacing: -0.08em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.05em; }
h3 { font-size: 1.25rem; }
ul, ol { margin: 0; padding-left: 1.15rem; color: var(--muted); }
li + li { margin-top: 0.55rem; }

.container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.section-pad { padding: 82px 0; }
.alt-section { background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)); }


/* Section spacing tuning */
.logo-carousel-wrap + .section-pad.alt-section {
  padding-top: 118px;
  padding-bottom: 42px;
}
.logo-carousel-wrap + .section-pad.alt-section + .section-pad {
  padding-top: 28px;
  padding-bottom: 34px;
}
.logo-carousel-wrap + .section-pad.alt-section + .section-pad + .section-pad {
  padding-top: 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px min(5vw, 56px);
  backdrop-filter: blur(18px);
  background: rgba(5, 3, 4, 0.80);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; }
.brand-logo {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #160606; font-weight: 900;
  overflow: hidden;
}
.nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 0.95rem; }
.nav a:hover { color: var(--text); }
.menu-toggle { display: none; background: transparent; border: 0; color: var(--text); font-size: 1.7rem; }

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(85, 240, 177, 0.22), transparent 30%),
    radial-gradient(circle at 14% 30%, rgba(92, 200, 255, 0.20), transparent 30%),
    linear-gradient(135deg, #0a0f1c, #121b2f 48%, #070a10);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-grid {
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  display: block;
}
.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 680px;
  padding: 52px 0 120px;
}
.hero-subtitle { max-width: 680px; font-size: 1.14rem; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 800; }
.trust-note { font-size: 0.95rem; margin-top: 16px; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  appearance: none; border: 0; cursor: pointer; font: inherit;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  font-weight: 800; transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #160606; }
.btn-secondary { border: 1px solid var(--line); background: rgba(255,255,255,0.06); color: var(--text); }
.glass-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-panel { padding: 34px; min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.hero-panel::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; }
.status-dot { position: absolute; top: 34px; right: 34px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 30px var(--accent); }
.mini-label { color: var(--accent-2); font-size: 0.85rem; font-weight: 800; }
.hero-list { display: grid; gap: 10px; margin-top: 12px; }
.hero-list span { padding: 11px 14px; background: rgba(255,255,255,0.07); border-radius: 14px; color: var(--muted); }

.carousel-wrap {
  position: relative;
  z-index: 3;
  margin-top: -16px;
  padding: 20px 0 24px;
  overflow: hidden;
  border-top: 1px solid rgba(245,192,77,0.08);
  border-bottom: 1px solid rgba(245,192,77,0.08);
  background:
    linear-gradient(90deg, rgba(5,3,4,1), rgba(24,6,10,0.78), rgba(5,3,4,1));
}
.carousel-wrap::before,
.carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: min(16vw, 180px);
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #050304 0%, rgba(5,3,4,0.88) 28%, rgba(5,3,4,0) 100%);
}
.carousel-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #050304 0%, rgba(5,3,4,0.88) 28%, rgba(5,3,4,0) 100%);
}
.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 52s linear infinite;
  will-change: transform;
  align-items: center;
}
.carousel-wrap:hover .carousel-track {
  animation-play-state: paused;
}
.carousel-poster {
  width: 164px;
  height: 246px;
  flex: 0 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 24px 50px rgba(0,0,0,0.28);
  transform: translateZ(0);
}
.carousel-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

.logo-carousel-wrap {
  position: relative;
  z-index: 3;
  margin-top: -2px;
  padding: 8px 0 18px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(5,3,4,0.98), rgba(24,6,10,0.68), rgba(5,3,4,0.98));
}
.logo-carousel-wrap::before,
.logo-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: min(15vw, 170px);
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.logo-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #050304 0%, rgba(5,3,4,0.9) 26%, rgba(5,3,4,0) 100%);
}
.logo-carousel-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #050304 0%, rgba(5,3,4,0.9) 26%, rgba(5,3,4,0) 100%);
}
.logo-carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-reverse 40s linear infinite;
  will-change: transform;
  align-items: center;
}
.logo-carousel-wrap:hover .logo-carousel-track {
  animation-play-state: paused;
}
.logo-carousel-card {
  width: 190px;
  height: 92px;
  flex: 0 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(229,9,20,0.12), transparent 34%),
    linear-gradient(180deg, rgba(20,22,28,0.96), rgba(11,13,18,0.96));
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px 18px;
  display: block;
}
@keyframes marquee-reverse {
  from { transform: translateX(-33.333%); }
  to { transform: translateX(0); }
}

.section-heading { max-width: 720px; margin-bottom: 34px; }
.cards { display: grid; gap: 18px; }
.three { grid-template-columns: repeat(3, 1fr); }
.card, .device-card, .price-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.card p:last-child { margin-bottom: 0; }
.step-card span, .badge { display: inline-block; margin-bottom: 16px; color: var(--accent); font-weight: 900; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.check-card { padding: 30px; }
.trial-box { padding: 34px; display: flex; justify-content: space-between; align-items: center; gap: 28px; }

.pricing-heading { text-align: center; margin-left: auto; margin-right: auto; }
.pricing-switch {
  width: fit-content;
  margin: 0 auto 28px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  display: flex;
  gap: 6px;
}
.pricing-switch-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}
.pricing-switch-btn:hover {
  color: var(--text);
}
.pricing-switch-btn.active {
  color: var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pricing-grid-three { grid-template-columns: repeat(3, 1fr); }
.pricing-grid.two-plans {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
}
.price-card { display: flex; flex-direction: column; gap: 14px; position: relative; }
.price-card.featured { background: linear-gradient(180deg, rgba(85,240,177,0.16), rgba(255,255,255,0.07)); border-color: rgba(85,240,177,0.42); }
.price { font-size: 2.65rem; font-weight: 950; letter-spacing: -0.06em; }
.price.price-text-only { font-size: 2.15rem; }
.price span { font-size: 1rem; color: var(--accent); vertical-align: super; margin-right: 2px; }
.price small { display: block; font-size: 0.9rem; letter-spacing: 0; font-weight: 700; color: var(--muted); }
.price-card .btn { margin-top: auto; }
.reseller-price { font-weight: 900; color: var(--text); }
.text-link { color: var(--accent); font-weight: 800; }

.device-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.device-card { background: rgba(255,255,255,0.045); }
.device-logo-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(229,9,20,0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.058), rgba(255,255,255,0.030));
}
.device-logo-card img {
  width: 100%;
  max-width: 150px;
  height: 72px;
  object-fit: contain;
  display: block;
}
.device-logo-card h3 {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
}
.review-card p { font-size: 1.05rem; color: var(--text); }
.copy-block { color: var(--muted); }
.copy-block p { margin-bottom: 1.15rem; }
.faq { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; background: rgba(255,255,255,0.05); }
summary { cursor: pointer; font-weight: 850; }
details p { margin: 14px 0 0; }
.contact-grid { padding: 34px; display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 34px; align-items: start; }
.contact-actions { display: grid; gap: 12px; }
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form textarea {
  width: 100%;
  min-height: 124px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.075);
  color: var(--text);
  outline: none;
  font: inherit;
}
.contact-form textarea:focus {
  border-color: rgba(245,192,77,0.54);
  box-shadow: 0 0 0 3px rgba(245,192,77,0.12);
}
.muted, .legal-note { color: var(--muted); font-size: 0.95rem; }
.legal-note { margin-top: 18px; }
.footer { border-top: 1px solid var(--line); padding: 24px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; max-width: 100%; color: var(--muted); }

.legal-page { padding: 82px 0; }
.legal-page article { max-width: 860px; }
.legal-page h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.legal-page h2 { font-size: 1.4rem; margin-top: 2rem; }


/* Subscription enquiry form modal */
body.modal-open { overflow: hidden; }
.modal-backdrop[hidden] { display: none; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}
.enquiry-modal {
  width: min(510px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  position: relative;
  padding: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(245,192,77,0.18), transparent 34%),
    radial-gradient(circle at 5% 95%, rgba(229,9,20,0.20), transparent 34%),
    linear-gradient(180deg, rgba(25,7,12,0.98), rgba(5,3,4,0.98));
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.selected-package {
  padding: 12px 14px;
  border: 1px solid rgba(245,192,77,0.22);
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  color: var(--text);
  font-weight: 800;
}
.enquiry-form { display: grid; gap: 16px; margin-top: 18px; }
.enquiry-modal h2 {
  font-size: clamp(2.15rem, 5vw, 3.35rem);
}
.enquiry-form .full-width {
  margin-top: 10px;
}
.form-field { display: grid; gap: 8px; color: var(--text); font-weight: 800; }
.form-field span { font-size: 0.9rem; color: var(--accent-2); }
.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(255,255,255,0.075);
  color: var(--text);
  outline: none;
}
.form-field input:focus,
.form-field select:focus {
  border-color: rgba(245,192,77,0.54);
  box-shadow: 0 0 0 3px rgba(245,192,77,0.12);
}
.form-field option { color: #12070a; }
.full-width { width: 100%; }
.form-help,
.form-status {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.form-status { color: var(--accent-2); font-weight: 800; }

@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid, .device-grid { grid-template-columns: repeat(2, 1fr); }
  .three { grid-template-columns: 1fr; }
  .trial-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 18px; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute; left: 18px; right: 18px; top: 68px;
    display: none; flex-direction: column; align-items: flex-start; gap: 10px;
    padding: 18px; border: 1px solid var(--line); border-radius: 18px;
    background: rgba(5, 3, 4, 0.96);
  }
  .nav.open { display: flex; }
  .section-pad { padding: 58px 0; }
  .pricing-grid, .pricing-grid.two-plans, .device-grid { grid-template-columns: 1fr; max-width: none; }
  .pricing-switch { width: 100%; justify-content: center; }
  .pricing-switch-btn { flex: 1 1 0; padding-inline: 12px; }
  .hero { min-height: auto; padding-top: 32px; }
  .hero-panel { min-height: 260px; }
  h1 { letter-spacing: -0.06em; }
}


/* Popcorn Club VIP theme overrides */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  z-index: -1;
}

.site-header {
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
}

.brand-logo {
  background: linear-gradient(135deg, #e50914 0%, #9b0710 46%, #f5c04d 100%);
  color: #fff8ed;
  box-shadow: 0 0 0 1px rgba(245,192,77,0.22), 0 16px 34px rgba(229,9,20,0.24);
  overflow: hidden;
}
.brand-logo.has-image {
  background: rgba(255,255,255,0.05);
  padding: 0;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg {
  background:
    radial-gradient(circle at 75% 18%, rgba(229, 9, 20, 0.36), transparent 32%),
    radial-gradient(circle at 55% 60%, rgba(245, 192, 77, 0.16), transparent 36%),
    radial-gradient(circle at 12% 28%, rgba(30, 167, 255, 0.20), transparent 30%),
    linear-gradient(135deg, #050304 0%, #19070c 42%, #060205 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.78));
}
.hero-bg.has-image {
  background-position: center;
  background-size: cover;
}

.hero-copy h1 {
  max-width: 880px;
  text-shadow: 0 12px 45px rgba(0,0,0,0.75);
}
.hero-copy h1::after {
  content: "";
  display: block;
  width: min(230px, 52vw);
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  box-shadow: 0 0 28px rgba(229,9,20,0.46);
}

.eyebrow,
.step-card span,
.badge,
.text-link {
  color: var(--accent-2);
}

.btn-primary {
  color: #fff8ed;
  background: linear-gradient(135deg, #e50914 0%, #c00611 58%, #f5c04d 100%);
  box-shadow: 0 18px 40px rgba(229,9,20,0.32);
}
.btn-primary:hover {
  box-shadow: 0 22px 52px rgba(229,9,20,0.44);
}
.btn-secondary {
  border-color: rgba(245,192,77,0.22);
  background: rgba(255,255,255,0.055);
}
.btn-secondary:hover {
  border-color: rgba(245,192,77,0.45);
  background: rgba(229,9,20,0.11);
}

.glass-card,
.card,
.device-card,
.price-card,
details {
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 24px 70px rgba(0,0,0,0.34);
}
.card:hover,
.device-card:hover,
.price-card:hover {
  border-color: rgba(245,192,77,0.34);
}

.hero-panel {
  background:
    radial-gradient(circle at 72% 16%, rgba(245,192,77,0.14), transparent 32%),
    radial-gradient(circle at 22% 78%, rgba(229,9,20,0.20), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
}
.status-dot {
  background: var(--accent);
  box-shadow: 0 0 32px rgba(229, 9, 20, 0.95);
}
.mini-label {
  color: var(--accent-2);
}
.hero-list span,
.stat-card {
  background: rgba(255,255,255,0.055);
}

.stat-card strong,
.price {
  color: #fff8ed;
  text-shadow: 0 0 28px rgba(229,9,20,0.16);
}
.price span,
.price small {
  color: var(--accent-2);
}
.price-card.featured {
  background:
    radial-gradient(circle at 75% 12%, rgba(245,192,77,0.20), transparent 34%),
    linear-gradient(180deg, rgba(229,9,20,0.21), rgba(255,255,255,0.055));
  border-color: rgba(245,192,77,0.46);
}
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(229,9,20,0.18), 0 0 42px rgba(229,9,20,0.16);
}

.alt-section {
  background:
    linear-gradient(180deg, rgba(229,9,20,0.055), rgba(255,255,255,0.018)),
    radial-gradient(circle at 88% 22%, rgba(30,167,255,0.10), transparent 26%);
}
.footer {
  background: rgba(0,0,0,0.18);
}

@media (max-width: 720px) {
  .hero-copy h1::after { width: 160px; }
}

/* Hero showcase image replacement */
.hero-showcase {
  position: absolute;
  top: -38px;
  bottom: -42px;
  left: calc(50% - 50vw - 28px);
  width: calc(100vw + 56px);
  z-index: 1;
  padding: 0;
  min-height: 100%;
  background: transparent;
  border: 0;
  border-radius: 0 !important;
  box-shadow: none;
  overflow: hidden;
  pointer-events: none;
}
.hero-showcase.has-showcase-image {
  width: calc(100vw + 56px);
  height: 100%;
  margin-left: 0;
  border-radius: 0 !important;
}
.hero-showcase.has-showcase-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  display: block;
  border-radius: 0 !important;
  transform: scale(1.20);
  transform-origin: center center;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0.18) 32%, rgba(0,0,0,0.55) 48%, rgba(0,0,0,0.88) 66%, rgba(0,0,0,1) 82%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0.18) 32%, rgba(0,0,0,0.55) 48%, rgba(0,0,0,0.88) 66%, rgba(0,0,0,1) 82%);
}
.hero-showcase.has-showcase-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5,3,4,1) 0%, rgba(5,3,4,1) 16%, rgba(5,3,4,0.96) 28%, rgba(5,3,4,0.78) 42%, rgba(5,3,4,0.42) 58%, rgba(5,3,4,0.14) 78%, rgba(5,3,4,0.03) 100%),
    linear-gradient(180deg, rgba(5,3,4,1) 0%, rgba(5,3,4,0.98) 10%, rgba(5,3,4,0.72) 18%, rgba(5,3,4,0.18) 30%, rgba(5,3,4,0.00) 42%, rgba(5,3,4,0.00) 58%, rgba(5,3,4,0.18) 70%, rgba(5,3,4,0.74) 84%, rgba(5,3,4,0.98) 92%, rgba(5,3,4,1) 100%);
}
.hero-showcase.has-showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 74% 32%, rgba(229,9,20,0.10), transparent 22%),
    radial-gradient(circle at 88% 56%, rgba(30,167,255,0.08), transparent 18%);
  pointer-events: none;
}
.hero-showcase .status-dot,
.hero-showcase .mini-label,
.hero-showcase h2,
.hero-showcase .hero-list {
  position: relative;
  z-index: 4;
}
@media (max-width: 960px) {
  .hero-grid {
    min-height: auto;
  }
  .hero-copy {
    max-width: 100%;
    padding: 20px 0 300px;
  }
  .hero-showcase {
    top: auto;
    bottom: -26px;
    left: calc(50% - 50vw - 20px);
    width: calc(100vw + 40px);
    height: 360px;
    min-height: 360px;
    border-radius: 0 !important;
  }
  .hero-showcase.has-showcase-image img {
    transform: scale(1.14);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.18) 10%, rgba(0,0,0,0.50) 35%, rgba(0,0,0,0.82) 65%, rgba(0,0,0,1) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.18) 10%, rgba(0,0,0,0.50) 35%, rgba(0,0,0,0.82) 65%, rgba(0,0,0,1) 100%);
  }
}
@media (max-width: 720px) {
  .hero-copy {
    padding: 8px 0 260px;
  }
  .hero-showcase {
    left: calc(50% - 50vw - 14px);
    width: calc(100vw + 28px);
    bottom: -18px;
    height: 290px;
    min-height: 290px;
    border-radius: 0 !important;
  }
}

@media (max-width: 720px) {
  .carousel-wrap { margin-top: -6px; padding: 14px 0 18px; }
  .carousel-track { gap: 12px; animation-duration: 40s; }
  .carousel-poster { width: 126px; height: 189px; border-radius: 14px; }
}


@media (max-width: 720px) {
  .logo-carousel-wrap { padding: 6px 0 14px; }
  .logo-carousel-track { gap: 12px; animation-duration: 32s; }
  .logo-carousel-card { width: 148px; height: 74px; border-radius: 14px; }
  .logo-carousel-card img { padding: 12px 14px; }
}


@media (max-width: 720px) {
  .logo-carousel-wrap + .section-pad.alt-section {
    padding-top: 70px;
    padding-bottom: 28px;
  }
  .logo-carousel-wrap + .section-pad.alt-section + .section-pad {
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .logo-carousel-wrap + .section-pad.alt-section + .section-pad + .section-pad {
    padding-top: 24px;
  }
}


/* Spacing after removing the repeated 3-step section */
.trial-section { padding-bottom: 34px; }
.packages-section { padding-top: 34px; }
@media (max-width: 720px) {
  .trial-section { padding-bottom: 26px; }
  .packages-section { padding-top: 26px; }
  .device-logo-card { min-height: 132px; }
  .device-logo-card img { height: 60px; max-width: 130px; }
}


/* Separate SEO article page */
.seo-nav {
  display: flex;
}
.seo-hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(229, 9, 20, 0.28), transparent 32%),
    radial-gradient(circle at 40% 70%, rgba(245, 192, 77, 0.12), transparent 36%);
}
.seo-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 48px;
  align-items: center;
}
.seo-hero h1 {
  max-width: 960px;
}
.seo-summary-card,
.seo-side-note,
.seo-device-list {
  padding: 30px;
}
.seo-summary-card ul,
.seo-device-list ul,
.seo-cards ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.seo-summary-card li,
.seo-device-list li,
.seo-cards li {
  margin: 0.55rem 0;
}
.seo-content-grid {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 42px;
  align-items: start;
}
.seo-article {
  max-width: 850px;
}
.seo-article p {
  color: var(--muted);
  font-size: 1.05rem;
}
.featured-card {
  border-color: rgba(245,192,77,0.38);
  background:
    radial-gradient(circle at 16% 12%, rgba(245,192,77,0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.062), rgba(255,255,255,0.032));
}
.seo-faq {
  max-width: 980px;
}

@media (max-width: 960px) {
  .seo-hero-grid,
  .seo-content-grid {
    grid-template-columns: 1fr;
  }
}




/* SEO page visual alignment with main landing page */
body.seo-page {
  background:
    radial-gradient(circle at 18% 5%, rgba(229, 9, 20, 0.18), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(245, 192, 77, 0.08), transparent 28%),
    #050304;
}
body.seo-page .site-header {
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
}
body.seo-page .seo-hero {
  min-height: auto;
  padding-top: 126px;
  padding-bottom: 82px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(229, 9, 20, 0.22), transparent 32%),
    radial-gradient(circle at 55% 64%, rgba(245, 192, 77, 0.10), transparent 36%),
    linear-gradient(135deg, #050304 0%, #19070c 42%, #060205 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.seo-page .seo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
body.seo-page .seo-hero .container {
  position: relative;
  z-index: 1;
}
body.seo-page .alt-section {
  background:
    radial-gradient(circle at 6% 20%, rgba(229, 9, 20, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.008));
}
body.seo-page .seo-summary-card,
body.seo-page .seo-side-note,
body.seo-page .seo-device-list,
body.seo-page .seo-wide-card {
  background:
    radial-gradient(circle at 12% 18%, rgba(229,9,20,0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.058), rgba(255,255,255,0.030));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
body.seo-page .seo-wide-card {
  padding: 34px;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: var(--radius);
}
body.seo-page .seo-wide-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin-bottom: 18px;
}
body.seo-page .seo-wide-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}
body.seo-page .seo-wide-card p:last-child {
  margin-bottom: 0;
}
body.seo-page .seo-content-grid,
body.seo-page .seo-hero-grid {
  max-width: 1200px;
}
body.seo-page .seo-article p {
  line-height: 1.75;
}
body.seo-page .seo-faq {
  max-width: 980px;
}
body.seo-page .section-pad {
  padding-top: 78px;
  padding-bottom: 78px;
}
body.seo-page .seo-hero.section-pad {
  padding-top: 126px;
  padding-bottom: 82px;
}
body.seo-page .contact-grid {
  background:
    radial-gradient(circle at 82% 12%, rgba(245,192,77,0.12), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(229,9,20,0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.058), rgba(255,255,255,0.030));
}

@media (max-width: 960px) {
  body.seo-page .seo-hero {
    padding-top: 88px;
    padding-bottom: 62px;
  }
  body.seo-page .section-pad {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}


body.seo-page .seo-wide-card .eyebrow {
  margin-bottom: 18px;
}
body.seo-page .seo-wide-card strong {
  color: var(--text);
}
body.seo-page .seo-wide-card {
  max-width: 1120px;
}
body.seo-page .contact .contact-grid {
  align-items: start;
}


body.seo-page .seo-hero-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1050px;
  margin: 0 auto;
}
body.seo-page .seo-hero-single h1 {
  max-width: 1050px;
}
body.seo-page .seo-hero-single .hero-subtitle {
  max-width: 820px;
}


.form-intro {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.96rem;
}
.form-confirmation[hidden] {
  display: none;
}
.confirmation-state {
  text-align: center;
  padding: 22px 8px 8px;
}
.confirmation-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #160606;
  font-weight: 950;
  font-size: 1.9rem;
  box-shadow: 0 18px 50px rgba(229,9,20,0.32);
}
.confirmation-state h3 {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  margin-bottom: 10px;
}
.confirmation-state p {
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}
button:disabled,
.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}


/* Form and pricing refinements */
.enquiry-form[hidden],
.contact-form[hidden] {
  display: none !important;
}
.enquiry-modal .form-status {
  min-height: 0;
}
.price-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.price-card h3 {
  min-height: 2.7em;
}
.price-card .badge {
  align-self: flex-start;
  line-height: 1.25;
  white-space: normal;
}
.price-card .price {
  margin-top: 8px;
}
.price-card ul {
  margin-top: 18px;
}
.price-card li {
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.price-card .btn {
  margin-top: auto;
}
.pricing-grid {
  align-items: stretch;
}


/* Safe home page refinements */
.four {
  grid-template-columns: repeat(4, 1fr);
}
.trial-box [data-trial-note] {
  display: block;
  margin-top: 24px;
}
@media (max-width: 1100px) {
  .four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .four {
    grid-template-columns: 1fr;
  }
}


/* Improved footer */
.footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(229,9,20,0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(0,0,0,0.55));
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr;
  gap: 34px;
  padding-top: 38px;
  padding-bottom: 30px;
}
.footer-brand p,
.footer-column p,
.footer-note {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 470px;
}
.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-column h3 {
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 4px;
}
.footer-column a {
  color: var(--muted);
  text-decoration: none;
}
.footer-column a:hover {
  color: var(--text);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-bottom p {
  margin: 0;
  color: var(--muted);
}
.footer-support strong {
  color: var(--text);
}
.footer-note {
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Support page refinements */
.support-page {
  padding-top: 130px;
  padding-bottom: 70px;
}
.support-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
}
.support-card section {
  margin-top: 30px;
}
.support-card h2 {
  margin-bottom: 12px;
}
.support-card a {
  color: var(--accent);
  text-decoration: none;
}
.support-card a:hover {
  color: var(--text);
}
.support-steps {
  color: var(--muted);
  padding-left: 1.25rem;
}
.support-steps li {
  margin: 14px 0;
  line-height: 1.65;
}


/* Legal page refinements */
.legal-card ul,
.legal-card ol {
  color: var(--muted);
  padding-left: 1.3rem;
}
.legal-card li {
  margin: 10px 0;
  line-height: 1.65;
}
.legal-card h3 {
  margin-top: 22px;
  margin-bottom: 8px;
}
.legal-card p {
  line-height: 1.72;
}


/* Clean footer layout */
.footer-main-clean {
  grid-template-columns: 1fr 1.05fr 1fr;
  align-items: start;
}
.footer-main-clean .footer-brand-right {
  display: flex;
  justify-content: flex-end;
}
.footer-main-clean .footer-support p {
  margin-top: 0;
}
.footer-support a {
  color: var(--muted);
  text-decoration: none;
}
.footer-support a:hover {
  color: var(--text);
}
@media (max-width: 860px) {
  .footer-main-clean {
    grid-template-columns: 1fr;
  }
  .footer-main-clean .footer-brand-right {
    justify-content: flex-start;
  }
}


/* v45 performance and layout-stability refinements */
.carousel-wrap {
  min-height: 290px;
}
.logo-carousel-wrap {
  min-height: 118px;
}
.carousel-track,
.logo-carousel-track,
.carousel-poster,
.logo-carousel-card,
.device-logo-card {
  contain: layout paint;
}
.hero-showcase.has-showcase-image img {
  aspect-ratio: 1600 / 893;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (max-width: 720px) {
  .carousel-wrap {
    min-height: 221px;
  }
  .logo-carousel-wrap {
    min-height: 94px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track,
  .logo-carousel-track {
    animation: none !important;
    transform: none !important;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}


/* v46 Smart TV SEO guide */
.seo-breadcrumb {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}
.seo-breadcrumb a,
.text-link {
  color: #ffd76a;
  text-decoration: underline;
  text-decoration-color: rgba(255, 215, 106, 0.45);
  text-underline-offset: 3px;
}
.seo-breadcrumb span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.42);
}
.guide-card-grid {
  align-items: stretch;
}
.guide-card {
  position: relative;
  min-height: 100%;
}
.guide-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 204, 55, 0.42);
  border-radius: 999px;
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.guide-checklist {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.guide-checklist li {
  position: relative;
  padding-left: 28px;
}
.guide-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 900;
}
.guide-steps {
  display: grid;
  gap: 16px;
}
.guide-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
}
.guide-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ee0714, #ffb338);
  color: #fff;
  font-weight: 900;
}
.guide-step h3 {
  margin: 2px 0 8px;
}
.guide-step p {
  margin: 0;
}
.guide-callout {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 3px solid var(--yellow);
  background: rgba(255, 204, 55, 0.07);
  border-radius: 0 14px 14px 0;
}
.guide-callout p {
  margin: 8px 0 0 !important;
}
.guide-comparison {
  align-items: stretch;
}
.guide-comparison .seo-wide-card {
  height: 100%;
}
.guide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
}
.guide-cta h2 {
  margin-bottom: 10px;
}
.guide-cta p:last-child {
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .guide-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .guide-step {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 20px;
  }
  .guide-step > span {
    width: 38px;
    height: 38px;
  }
}


/* v47 Smart TV guide spacing refinements */
.seo-faq {
  display: grid;
  gap: 16px;
}
.seo-faq details {
  margin: 0;
}
.guide-cta {
  padding: 40px 44px;
}
.guide-cta > div:first-child {
  max-width: 780px;
}
.guide-cta .hero-actions {
  display: flex;
  flex: 0 0 242px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin: 0;
}
.guide-cta .hero-actions .btn {
  width: 100%;
  min-width: 0;
  margin: 0;
  text-align: center;
}
@media (max-width: 820px) {
  .guide-cta {
    padding: 32px;
  }
  .guide-cta .hero-actions {
    flex: none;
    width: min(100%, 320px);
  }
}
@media (max-width: 560px) {
  .seo-faq {
    gap: 12px;
  }
  .guide-cta {
    padding: 26px 22px;
  }
  .guide-cta .hero-actions {
    width: 100%;
  }
}


/* v48 Smart TV comparison and setup-step refinements */
.guide-comparison {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.guide-comparison .seo-wide-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 34px 36px;
}
.guide-comparison .guide-checklist {
  margin-bottom: 0;
}
.guide-steps {
  max-width: 1180px;
  margin: 0 auto;
}
.guide-step {
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
}
.guide-step > span.guide-step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 88px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 204, 55, 0.42);
  border-radius: 999px;
  background: rgba(255, 204, 55, 0.045);
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  white-space: nowrap;
}
.guide-step h3 {
  margin-top: 0;
}
@media (max-width: 960px) {
  .guide-comparison {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}
@media (max-width: 680px) {
  .guide-step {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px 22px;
  }
  .guide-step > span.guide-step-label {
    justify-self: start;
  }
}


/* v49 Guides navigation dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--text);
}
.nav-dropdown-chevron {
  display: inline-block;
  font-size: 0.72em;
  transition: transform 0.18s ease;
}
.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 100;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(15, 13, 14, 0.98);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(255, 204, 55, 0.09);
  color: var(--yellow);
}
@media (max-width: 720px) {
  .nav-dropdown {
    display: grid;
    width: 100%;
  }
  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 3px 0;
  }
  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 7px;
    padding: 5px 0 0 14px;
    border: 0;
    border-left: 1px solid rgba(255, 204, 55, 0.25);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    transform: none;
  }
  .nav-dropdown-menu a {
    padding: 9px 10px;
  }
}


/* v50 Guides dropdown hover bridge */
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -18px;
    right: -18px;
    height: 18px;
  }

  .nav-dropdown-menu {
    top: calc(100% + 10px);
  }
}


/* v51 Supported Devices guide card */
.device-guide-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  margin-top: 30px;
  padding: 30px 34px;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.device-guide-card:hover,
.device-guide-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 204, 55, 0.38);
  background: linear-gradient(115deg, rgba(255, 204, 55, 0.075), rgba(255, 255, 255, 0.035));
}
.device-guide-card-copy {
  max-width: 900px;
}
.device-guide-card-copy .eyebrow {
  margin-bottom: 10px;
}
.device-guide-card-copy h3 {
  margin: 0 0 5px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.2;
}
.device-guide-card-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.device-guide-card-action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 170px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 204, 55, 0.38);
  border-radius: 999px;
  color: var(--yellow);
  font-weight: 850;
  white-space: nowrap;
}
.device-guide-card:hover .device-guide-card-action,
.device-guide-card:focus-visible .device-guide-card-action {
  background: rgba(255, 204, 55, 0.09);
}
@media (max-width: 820px) {
  .device-guide-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 28px;
  }
  .device-guide-card-action {
    min-width: 0;
  }
}
@media (max-width: 560px) {
  .device-guide-card {
    margin-top: 24px;
    padding: 24px 22px;
  }
  .device-guide-card-action {
    width: 100%;
  }
}


/* v52 Multiple device guide cards */
.device-guide-card + .device-guide-card {
  margin-top: 18px;
}


/* v53 Internet speed guide */
.buffering-cause-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.buffering-cause {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}
.buffering-cause h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
}
.buffering-cause p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 760px) {
  .buffering-cause-grid {
    grid-template-columns: 1fr;
  }
}


/* v54 IPTV troubleshooting guide */
.troubleshooting-steps .guide-step {
  align-items: flex-start;
}
.troubleshooting-steps .guide-step p + p {
  margin-top: 10px;
}
.troubleshooting-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.troubleshooting-result {
  padding: 26px 28px;
}
.troubleshooting-result h3 {
  margin: 0 0 5px;
  font-size: 1.12rem;
}
.troubleshooting-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 760px) {
  .troubleshooting-result-grid {
    grid-template-columns: 1fr;
  }
}


/* v55 Phones and tablets guide */
.mobile-data-callout {
  max-width: 1080px;
  margin: 24px auto 0;
}


/* v56 Windows PC and laptop guide */
.guide-related-link {
  max-width: 1080px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
}
.windows-troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 22px;
}
.windows-troubleshooting-grid > div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}
.windows-troubleshooting-grid h3 {
  margin: 0 0 12px;
}
@media (max-width: 760px) {
  .windows-troubleshooting-grid {
    grid-template-columns: 1fr;
  }
}


/* v57 secondary-page mobile navigation fix */
.menu-toggle[data-secondary-menu-toggle] {
  line-height: 1;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border-radius: 10px;
}
.menu-toggle[data-secondary-menu-toggle].is-open {
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 720px) {
  .site-header .menu-toggle[data-secondary-menu-toggle] {
    display: grid;
    position: relative;
    z-index: 122;
  }
  .site-header .nav[data-secondary-nav] {
    display: none;
    z-index: 121;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-header .nav[data-secondary-nav].open {
    display: flex;
  }
  body.secondary-menu-open {
    overflow: hidden;
  }
}
@media (min-width: 721px) {
  .site-header .nav[data-secondary-nav] {
    display: flex;
  }
}


/* v58 Zoho marketing popup and optional consent */
.marketing-opt-in {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin: 4px 0 16px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 204, 102, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  cursor: pointer;
}
.marketing-opt-in input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: #f3a33b;
  cursor: pointer;
}
.marketing-opt-in a,
.marketing-privacy-note a {
  color: #ffd26f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.marketing-modal-backdrop[hidden] {
  display: none;
}
.marketing-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}
.marketing-modal {
  position: relative;
  width: min(100%, 520px);
  max-height: min(720px, calc(100vh - 40px));
  overflow-y: auto;
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(255, 204, 102, 0.28);
  background:
    radial-gradient(circle at 85% 10%, rgba(242, 138, 44, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(23, 5, 8, 0.98), rgba(8, 4, 5, 0.99));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
}
.marketing-modal h2 {
  margin: 6px 40px 12px 0;
  font-size: clamp(2rem, 8vw, 3.15rem);
  line-height: 1.02;
}
.marketing-modal > [data-marketing-form-panel] > p:not(.eyebrow) {
  color: var(--muted);
}
.marketing-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.marketing-modal-close:hover,
.marketing-modal-close:focus-visible {
  border-color: rgba(255, 204, 102, 0.55);
  background: rgba(255, 255, 255, 0.08);
}
.marketing-signup-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.marketing-privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}
.marketing-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.marketing-success {
  text-align: center;
  padding: 12px 0 4px;
}
.marketing-success .confirmation-icon {
  margin-inline: auto;
}
.marketing-success h3 {
  margin: 18px 0 10px;
  font-size: 1.8rem;
}
.marketing-success p {
  color: var(--muted);
}
body.marketing-modal-open {
  overflow: hidden;
}
@media (max-width: 560px) {
  .marketing-modal-backdrop {
    align-items: end;
    padding: 12px;
  }
  .marketing-modal {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 28px 20px 24px;
    border-radius: 22px 22px 14px 14px;
  }
  .marketing-modal h2 {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }
}


/* v60 Best IPTV Apps guide */
.app-table-wrap {
  overflow-x: auto;
  padding: 8px;
}
.app-comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  text-align: left;
}
.app-comparison-table th,
.app-comparison-table td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  vertical-align: top;
}
.app-comparison-table th {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.app-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}
.app-comparison-table a {
  color: var(--yellow);
  font-weight: 850;
  text-underline-offset: 3px;
}
.app-review-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}
.app-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.app-card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-inline: auto;
}
.app-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
}
.app-card h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.app-card > p {
  color: var(--muted);
  line-height: 1.7;
}
.app-card .guide-checklist {
  flex: 1;
}
.app-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.app-device-pill,
.app-cost-pill {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
}
.app-device-pill {
  border: 1px solid rgba(255, 204, 55, 0.42);
  color: var(--yellow);
  background: rgba(255, 204, 55, 0.07);
}
.app-cost-pill {
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}
.app-link-btn {
  width: 100%;
  margin-top: 8px;
  text-align: center;
}
.app-section-link {
  margin: 26px auto 0;
  max-width: 900px;
  color: var(--muted);
  text-align: center;
}
.app-format-callout {
  max-width: 900px;
  margin: 30px auto 0;
}
.app-guide-link-section {
  padding-top: 0 !important;
}
.app-guide-link-section .device-guide-card {
  margin-top: 0;
}
@media (max-width: 980px) {
  .app-card-grid,
  .app-card-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .app-card-grid,
  .app-card-grid-two {
    grid-template-columns: 1fr;
  }
  .app-card {
    padding: 24px 22px;
  }
  .app-table-wrap {
    margin-inline: -4px;
  }
}


/* v61 device-specific app sections and inline setup instructions */
.app-setup {
  max-width: 1080px;
  margin: 28px auto 0;
  padding: 0;
  overflow: hidden;
}
.app-setup summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.025);
  transition: background 0.2s ease, color 0.2s ease;
}
.app-setup summary::-webkit-details-marker {
  display: none;
}
.app-setup summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 204, 55, 0.38);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}
.app-setup[open] summary::after {
  content: "−";
}
.app-setup summary:hover,
.app-setup summary:focus-visible {
  background: rgba(255, 204, 55, 0.06);
}
.app-setup summary span {
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.app-setup summary strong {
  flex: 1;
  font-size: clamp(1rem, 2vw, 1.18rem);
}
.app-setup-content {
  padding: 10px 28px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.app-setup-content h3 {
  margin: 18px 0 8px;
  color: #fff;
}
.setup-step-list {
  margin: 18px 0 0;
  padding-left: 1.35rem;
  color: var(--muted);
}
.setup-step-list li {
  margin: 0 0 11px;
  padding-left: 5px;
  line-height: 1.65;
}
.setup-step-list strong {
  color: #fff;
}
.setup-note {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 3px solid rgba(255, 204, 55, 0.68);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  background: rgba(255, 204, 55, 0.055);
  line-height: 1.65;
}
.setup-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.setup-columns > div {
  min-width: 0;
}
@media (max-width: 900px) {
  .setup-columns {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
@media (max-width: 560px) {
  .app-setup summary {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 18px 19px;
  }
  .app-setup summary span {
    width: calc(100% - 52px);
  }
  .app-setup summary strong {
    order: 3;
    flex-basis: 100%;
  }
  .app-setup summary::after {
    margin-left: auto;
  }
  .app-setup-content {
    padding: 8px 20px 22px;
  }
}

/* v62 richer app introduction, compact cards, logos and per-app setup panels */
.app-intro-card {
  max-width: 1180px;
  margin-inline: auto;
}
.app-intro-card > p {
  max-width: 1060px;
}
.app-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 26px;
}
.app-intro-item {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.app-intro-item > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,204,55,.42);
  border-radius: 50%;
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 900;
}
.app-intro-item h3 {
  margin: 0 0 7px;
  font-size: .88rem;
}
.app-intro-item p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.58;
}
.app-intro-subheading {
  margin: 7px 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}
.app-intro-footnote {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .86rem;
}

.app-card-grid {
  gap: 15px;
}
.app-card-grid-two {
  max-width: 1060px;
}
.app-card {
  padding: 18px;
  border-radius: 22px;
}
.app-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
}
.app-card-top {
  flex: 1;
  padding-top: 2px;
}
.app-logo-box {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}
.app-logo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.065);
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: -.02em;
}
.app-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
}
.app-logo[src*="myiptv-player"] {
  object-fit: contain;
  padding: 5px;
  background: rgba(255,255,255,.035);
}
.app-logo-pending {
  opacity: .85;
}
.app-card h3 {
  margin: 10px 0 6px;
  font-size: clamp(1.16rem, 1.45vw, 1.35rem);
  line-height: 1.18;
}
.app-card > p {
  margin: 0 0 5px;
  font-size: .86rem;
  line-height: 1.5;
}
.app-card .guide-checklist {
  margin: 8px 0 10px;
  gap: 5px;
}
.app-card .guide-checklist li {
  margin-bottom: 5px;
  font-size: .86rem;
  line-height: 1.42;
}
.app-device-pill,
.app-cost-pill {
  min-height: 26px;
  padding: 5px 9px;
  font-size: .68rem;
}
.app-link-btn {
  min-height: 42px;
  margin-top: 2px;
  padding: 10px 12px;
  font-size: .74rem;
}
.app-card-setup {
  margin-top: 9px;
  border: 1px solid rgba(255,204,55,.2);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,204,55,.025);
}
.app-card-setup summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 34px 8px 12px;
  cursor: pointer;
  list-style: none;
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
}
.app-card-setup summary::-webkit-details-marker { display: none; }
.app-card-setup summary::after {
  content: "+";
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,204,55,.38);
  border-radius: 50%;
  color: var(--yellow);
  font-size: .88rem;
  line-height: 1;
}
.app-card-setup[open] summary::after { content: "-"; }
.app-card-setup summary:hover,
.app-card-setup summary:focus-visible {
  background: rgba(255,204,55,.055);
}
.app-card-setup-content {
  padding: 0 12px 11px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.app-card-step-list {
  margin: 9px 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
}
.app-card-step-list li {
  margin: 0 0 5px;
  padding-left: 2px;
  font-size: .8rem;
  line-height: 1.42;
}
.app-card-setup-note {
  margin: 8px 0 9px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
}
.app-pdf-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255,204,55,.28);
  border-radius: 10px;
  color: var(--yellow);
  background: rgba(255,204,55,.04);
  font-size: .72rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.app-pdf-link:hover,
.app-pdf-link:focus-visible {
  background: rgba(255,204,55,.09);
}
@media (max-width: 820px) {
  .app-intro-grid { grid-template-columns: 1fr; }
  .app-intro-item { padding: 17px; }
}
@media (max-width: 680px) {
  .app-card { padding: 16px; }
  .app-logo-box { flex-basis: 48px; width: 48px; height: 48px; }
  .app-card h3 { font-size: 1.16rem; }
}


/* v63 mobile polish */
.app-table-wrap {
  max-width: 100%;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 560px) {
  .footer-links {
    width: 100%;
    gap: 10px 16px;
  }
  .footer-links a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }
  .footer-bottom {
    width: 100%;
    min-width: 0;
  }
  .footer-bottom > * {
    max-width: 100%;
    min-width: 0;
  }
}
