/* =========
   GLOBAL RESET
   ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050811;
  color: #f5f6fa;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* =========
   LAYOUT HELPERS
   ========= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.container-wide {
  max-width: 1640px;
}

.media-showcase-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(720px, 1.6fr);
  gap: 32px;
}

.media-showcase-layout .media-frame-tv {
  width: 100%;
}

.media-showcase-block .lead {
  max-width: 980px;
}

.media-showcase-block .proof-grid {
  grid-template-columns: 1fr;
  gap: 24px;
}

.media-showcase-block .proof-card {
  padding: 18px;
}

.media-showcase-block .media-frame-tv,
.media-showcase-block .media-frame-tablet {
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 1500px) {
  .media-showcase-block .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .media-showcase-layout {
    grid-template-columns: 1fr;
  }
}

/* =========
   HEADER / NAV
   ========= */
.site-header {
  background: rgba(5, 8, 17, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 68px;
  width: 68px;
  border-radius: 18px;
  object-fit: cover;
  cursor: pointer;
}

/* =========
   NAVIGATION
   ========= */
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.mikes-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  justify-self: start;
}

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

.mikes-language-options {
  position: relative;
}

.mikes-language-options::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(232, 238, 249, 0.9);
  border-bottom: 2px solid rgba(232, 238, 249, 0.9);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.mikes-language-select {
  min-height: 38px;
  min-width: 88px;
  padding: 0 34px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: #e8eef9;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.mikes-language-select:hover,
.mikes-language-select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(157, 223, 255, 0.18);
  outline: none;
}

.mikes-language-select option {
  color: #04101a;
}

body.is-rtl {
  direction: rtl;
}

body.is-rtl .hero-text,
body.is-rtl .section,
body.is-rtl .step-card,
body.is-rtl .support-card,
body.is-rtl .card,
body.is-rtl .plan-card,
body.is-rtl .review-card,
body.is-rtl .account-card,
body.is-rtl .watch-card {
  text-align: right;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  font-size: 0.92rem;
  opacity: 0.86;
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(157, 223, 255, 0.18);
  transform: translateY(-1px);
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: #00e5ff;
}

/* =========
   HERO
   ========= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  background:
    linear-gradient(120deg, rgba(5, 8, 17, 0.96) 18%, rgba(5, 8, 17, 0.80) 46%, rgba(5, 8, 17, 0.92) 100%),
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.18) 0, rgba(0, 229, 255, 0) 36%),
    url('about.jpg') center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(77, 140, 255, 0.08), transparent 35%),
    radial-gradient(circle at 80% 25%, rgba(0, 229, 255, 0.14), transparent 30%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.hero-text {
  max-width: 700px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ddfff;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 14px;
  max-width: 760px;
}

.hero-sub {
  font-size: 1.04rem;
  color: #d0d6e0;
  margin-bottom: 24px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #f4f7ff;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.hero-note {
  font-size: 0.94rem;
  color: #b9c1d4;
}

.hero-media {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-screen {
  width: min(100%, 470px);
  border-radius: 24px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

.hero-screen-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.hero-media-badge {
  position: absolute;
  max-width: 240px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(9, 15, 30, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #eff5ff;
  font-size: 0.9rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.hero-media-badge-top {
  top: 8px;
  left: 0;
}

.hero-media-badge-bottom {
  right: 0;
  bottom: 18px;
}

/* =========
   BUTTONS
   ========= */
.btn {
  display: inline-block;
  padding: 11px 19px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #00e5ff, #4d8cff);
  color: #050811;
  box-shadow: 0 8px 18px rgba(0, 229, 255, 0.25);
}

.btn.secondary {
  border-color: rgba(157, 223, 255, 0.55);
  background: rgba(255, 255, 255, 0.02);
  color: #eef4ff;
}

.btn:hover {
  opacity: 0.96;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

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

.section-alt {
  background: #090f1e;
}

.section h1,
.section h2 {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.lead {
  font-size: 1rem;
  color: #d0d6e0;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  color: #7cecff;
}

.install-device-panel {
  margin-top: 28px;
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(10, 17, 33, 0.98), rgba(6, 11, 22, 0.98));
  border: 1px solid rgba(157, 223, 255, 0.16);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.install-device-panel-copy {
  max-width: 760px;
}

.install-device-panel-copy h2 {
  margin-bottom: 12px;
}

.device-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.device-recommendation-card {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 20px;
  min-height: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.device-recommendation-card-featured {
  background:
    radial-gradient(circle at top right, rgba(127, 255, 209, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(127, 255, 209, 0.22);
}

.device-badge {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.14);
  border: 1px solid rgba(0, 229, 255, 0.18);
  color: #97f6ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-badge-budget {
  background: rgba(255, 214, 102, 0.12);
  border-color: rgba(255, 214, 102, 0.18);
  color: #ffd666;
}

.device-art {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.92));
}

.device-art img {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(3, 10, 23, 0.18));
}

.device-copy {
  display: grid;
  gap: 10px;
}

.device-copy h3 {
  margin: 0;
  font-size: 1.35rem;
}

.device-subhead {
  margin: 0;
  color: #8cf0ff;
  font-weight: 600;
}

.device-feature-list {
  margin: 0;
  padding-left: 18px;
  color: #dbe4f1;
}

.device-feature-list li {
  margin-bottom: 6px;
}

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

.site-chatbot {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 1200;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.site-chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #00e5ff, #6fffe8);
  color: #04111f;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(0, 229, 255, 0.28);
  cursor: pointer;
}

.site-chatbot-toggle-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(4, 17, 31, 0.1);
}

.site-chatbot-panel {
  width: min(380px, calc(100vw - 24px));
  max-height: min(72vh, 640px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(10, 17, 33, 0.98), rgba(5, 10, 21, 0.98));
  border: 1px solid rgba(157, 223, 255, 0.18);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.site-chatbot-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.site-chatbot-panel-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.site-chatbot-kicker {
  margin: 0 0 6px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7cecff;
}

.site-chatbot-close {
  border: 0;
  background: transparent;
  color: #dfe9f5;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.site-chatbot-messages {
  overflow-y: auto;
  display: grid;
  gap: 10px;
  padding-right: 4px;
}

.site-chatbot-message {
  display: flex;
}

.site-chatbot-message-user {
  justify-content: flex-end;
}

.site-chatbot-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #e9edf6;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-chatbot-message-user .site-chatbot-bubble {
  background: rgba(0, 229, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.18);
}

.site-chatbot-bubble p,
.site-chatbot-bubble ul {
  margin: 0 0 10px;
}

.site-chatbot-bubble p:last-child,
.site-chatbot-bubble ul:last-child {
  margin-bottom: 0;
}

.site-chatbot-bubble ul {
  padding-left: 18px;
}

.site-chatbot-bubble a {
  color: #8cf0ff;
}

.site-chatbot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-chatbot-chip {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dbe4f1;
  padding: 8px 12px;
  font-size: 0.85rem;
  cursor: pointer;
}

.site-chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.site-chatbot-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 12px 14px;
  outline: none;
}

.site-chatbot-input::placeholder {
  color: #9aa6bb;
}

.site-chatbot-submit {
  border: 0;
  border-radius: 14px;
  padding: 0 16px;
  background: linear-gradient(135deg, #00e5ff, #6fffe8);
  color: #04111f;
  font-weight: 800;
  cursor: pointer;
}

/* =========
   ABOUT LAYOUT
   ========= */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}

.about-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.subheading {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #aeb4c5;
  margin-bottom: 10px;
}

/* =========
   HOW IT WORKS
   ========= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.library-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.library-stat-card {
  background: linear-gradient(180deg, rgba(10, 17, 33, 0.96), rgba(7, 12, 24, 0.96));
  border: 1px solid rgba(157, 223, 255, 0.14);
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.library-stat-value {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: #9ddfff;
  margin-bottom: 10px;
}

.library-stat-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.library-stat-card p {
  color: #c8d0df;
  font-size: 0.95rem;
}

.step-card {
  background: #090f1e;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.step-number {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00e5ff;
  color: #050811;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  margin-bottom: 10px;
}

/* =========
   PRICING
   ========= */
.pricing-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.pricing-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(12, 19, 36, 0.98), rgba(8, 13, 25, 0.98));
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.popular-plan {
  border-color: rgba(77, 140, 255, 0.55);
  transform: translateY(-6px);
}

.featured-plan {
  border-color: rgba(0, 229, 255, 0.85);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(0, 229, 255, 0.10) inset;
}

.plan-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.plan-top {
  margin-bottom: 14px;
}

.plan-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #93a8c9;
  margin-bottom: 6px;
}

.plan-card h3 {
  font-size: 1.55rem;
  margin-bottom: 2px;
}

.plan-price,
.price {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.plan-subprice {
  color: #cfd8ea;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.plan-features {
  margin-top: 0;
  margin-bottom: 22px;
  padding-left: 18px;
  flex: 1;
}

.plan-features li {
  margin-bottom: 8px;
}

.plan-btn {
  align-self: flex-start;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #00e5ff;
  color: #050811;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge-dark {
  background: #4d8cff;
  color: #f7fbff;
}

.badge-outline {
  background: transparent;
  color: #ccefff;
  border: 1px solid rgba(0, 229, 255, 0.45);
}

.pricing-footnote {
  margin-top: 18px;
  color: #b7c0d2;
  font-size: 0.95rem;
}

.small {
  font-size: 0.88rem;
  color: #aeb4c5;
  margin-top: 4px;
}

/* =========
   LISTS
   ========= */
.steps-list,
.bullet-list {
  margin: 10px 0 18px;
  padding-left: 18px;
  font-size: 0.96rem;
}

.steps-list li,
.bullet-list li {
  margin-bottom: 6px;
}

/* =========
   FAQ
   ========= */
.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #090f1e;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: #ffffff;
  padding: 14px 16px;
  border: none;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #00e5ff;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 10px;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: #00e5ff;
}

.faq-answer {
  display: none;
  padding: 10px 16px 14px;
  font-size: 0.95rem;
  color: #d0d6e0;
}

/* =========
   SUPPORT / CONTACT
   ========= */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.channel-package-layout {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.channel-package-panel {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 17, 33, 0.96), rgba(6, 11, 22, 0.98));
  border: 1px solid rgba(157, 223, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.channel-package-header {
  margin-bottom: 18px;
}

.channel-package-header h2 {
  margin-bottom: 8px;
}

.channel-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 16px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: #eef6ff;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.16);
}

.channel-pill-vod {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.support-card,
.card {
  background: #090f1e;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.contact-info {
  max-width: 420px;
  font-size: 0.96rem;
}

/* =========
   REVIEWS
   ========= */
.reviews-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.review-policy,
.review-form-shell,
.review-card {
  background:
    linear-gradient(180deg, rgba(9, 15, 30, 0.96), rgba(5, 10, 21, 0.98));
  border: 1px solid rgba(157, 223, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.review-policy {
  padding: 20px;
}

.review-policy h3 {
  margin-bottom: 10px;
}

.review-policy p + p {
  margin-top: 10px;
}

.review-policy-list {
  margin-top: 14px;
  padding-left: 18px;
  color: #d0d6e0;
}

.review-policy-list li + li {
  margin-top: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.featured-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.review-summary {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(220px, 0.9fr);
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(9, 15, 30, 0.96), rgba(5, 10, 21, 0.98));
  border: 1px solid rgba(157, 223, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.review-summary-main {
  display: grid;
  gap: 8px;
  align-content: center;
}

.review-summary-value {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: #f8fbff;
}

.review-summary-stars {
  color: #ffd666;
  letter-spacing: 0.18em;
  font-size: 1.1rem;
}

.review-summary-caption {
  color: #aebbd3;
  font-size: 0.98rem;
}

.review-summary-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-summary-stat {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-summary-stat-label {
  display: block;
  margin-bottom: 8px;
  color: #9fb0cc;
  font-size: 0.86rem;
}

.review-summary-stat strong {
  font-size: 1.4rem;
  color: #f5f6fa;
}

.review-empty-state {
  margin-top: 22px;
}

.review-card {
  padding: 20px;
}

.review-card.is-live {
  border-color: rgba(0, 229, 255, 0.18);
}

.review-card-featured {
  border-color: rgba(255, 214, 102, 0.28);
  background:
    radial-gradient(circle at top right, rgba(255, 214, 102, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(9, 15, 30, 0.96), rgba(5, 10, 21, 0.98));
}

.review-card p:last-child {
  color: #e9edf6;
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card h3,
.review-policy h3 {
  font-size: 1.04rem;
  margin-bottom: 4px;
}

.review-meta {
  font-size: 0.9rem;
  color: #9fb0cc;
}

.review-featured-kicker {
  margin-bottom: 6px;
  color: #ffd666;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #b7c5de;
  font-size: 0.8rem;
  white-space: nowrap;
}

.review-stars {
  color: #ffd666;
  letter-spacing: 0.16em;
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.review-note {
  margin-top: 12px;
  color: #9fb0cc;
  font-size: 0.92rem;
}

.review-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.review-step {
  padding: 18px;
}

.review-form-shell {
  padding: 24px;
  margin-top: 20px;
}

.review-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 229, 255, 0.18);
  background: rgba(0, 229, 255, 0.08);
  color: #e8f7ff;
}

.review-status[data-tone="success"] {
  border-color: rgba(101, 214, 164, 0.28);
  background: rgba(101, 214, 164, 0.12);
}

.review-status[data-tone="error"] {
  border-color: rgba(255, 107, 120, 0.28);
  background: rgba(255, 107, 120, 0.10);
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group.full {
  grid-column: 1 / -1;
}

.field-group label {
  font-weight: 600;
  color: #eef4ff;
}

.review-input,
.review-textarea,
.review-select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: #f5f6fa;
  padding: 13px 14px;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.review-select {
  appearance: auto;
}

.review-select option {
  color: #050811;
  background: #f5f6fa;
}

.review-input::placeholder,
.review-textarea::placeholder {
  color: #93a1bc;
}

.review-input:focus,
.review-textarea:focus,
.review-select:focus {
  outline: none;
  border-color: rgba(0, 229, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.review-textarea {
  min-height: 150px;
  resize: vertical;
}

.review-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d0d6e0;
  font-size: 0.94rem;
}

.review-check input {
  margin-top: 4px;
}

.review-submit-row,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.review-submit-row {
  margin-top: 20px;
}

.review-submit-note {
  color: #9fb0cc;
  font-size: 0.9rem;
}

.review-helper {
  margin-top: 12px;
  color: #9fb0cc;
  font-size: 0.92rem;
}

/* =========
   TEXT BLOCKS
   ========= */
.text-block h3 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 1rem;
}

.text-block p {
  font-size: 0.95rem;
  color: #d0d6e0;
}

.support-buffering-note {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(126, 223, 240, 0.26);
  background: linear-gradient(135deg, rgba(126, 223, 240, 0.14), rgba(7, 15, 28, 0.88));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.support-buffering-note strong {
  color: #f7fcff;
  font-size: 1rem;
}

.support-buffering-note span {
  color: #d9f7ff;
  line-height: 1.65;
}

/* =========
   FOOTER
   ========= */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  background: #050811;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: #aeb4c5;
}

.footer-links a {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}


[hidden] {
  display: none !important;
}

/* =========
   WATCHNOW APP STYLES
   ========= */
.watchnow-page,
.watchnow-player-page,
.watch-player-modal {
  background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.08), transparent 30%),
              linear-gradient(180deg, #04070f 0%, #091321 100%);
}

.watchnow-main {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 46px;
}

.watch-auth-shell,
.watch-app-shell {
  display: block;
}

.watch-auth-card,
.watch-card,
.watch-player-modal-content,
.watch-player-page {
  background: linear-gradient(180deg, rgba(12, 18, 36, 0.96), rgba(8, 13, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.watch-auth-card {
  max-width: 640px;
  margin: 36px auto 0;
  padding: 34px;
}

.watch-auth-brand {
  margin-bottom: 22px;
}

.watch-auth-kicker,
.watch-app-kicker,
.watch-selection-kicker,
.watch-hero-eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: #7edff0;
}

.watch-auth-brand h1,
.watch-app-title,
.watch-player-title,
#modalPlayerTitle {
  margin: 0;
}

.watch-auth-copy {
  margin: 12px 0 0;
  color: #aeb7ca;
  line-height: 1.6;
}

.watch-app-subtitle {
  max-width: 560px;
  margin: 8px 0 0;
  color: #aeb7ca;
  line-height: 1.5;
}

.watch-form,
.watch-library-rail,
.watch-main-column,
.watch-player-side,
.watch-side-block,
.watch-selection-copy,
.watch-shelves,
.watch-series-panel,
.watch-series-list {
  display: grid;
  gap: 16px;
}

.watch-label {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #dce7ff;
}

.watch-input {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f4f8ff;
  padding: 12px 14px;
  outline: none;
}

.watch-input:focus {
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.14);
}

.watch-actions,
.watch-account-tools,
.watch-search-shell,
.watch-rail-top,
.watch-selection-head,
.watch-series-panel-top,
.watch-launch-actions,
.watch-player-topbar,
.watch-shelf-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.watch-actions {
  flex-wrap: wrap;
}

.watch-error-panel {
  margin-top: 18px;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 107, 120, 0.26);
  background: rgba(255, 107, 120, 0.08);
}

.watch-error-summary {
  margin: 8px 0 10px;
  color: #ffe2e5;
}

.watch-error-details,
.watch-output-code,
.watch-player-log {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #cfe7ff;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 14px;
  padding: 12px;
}

.watch-app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.watch-account-tools {
  max-width: 760px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.watch-account-chip {
  display: grid;
  gap: 3px;
  min-width: 180px;
  padding: 11px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.watch-account-label,
.watch-count,
.watch-note,
.watch-poster-meta,
.watch-episode-meta {
  color: #aeb7ca;
}

.watch-app-layout {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 22px;
}

.watch-card {
  padding: 18px;
}

.watch-tab-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(108px, 1fr));
  gap: 8px;
  align-items: center;
  min-width: min(100%, 520px);
}

.watch-tab,
.watch-category-chip,
.watch-season-tab,
.watch-search-clear,
.watch-episode-toggle,
.watch-episode-play,
.watch-poster-card {
  border: 0;
  cursor: pointer;
}

.watch-tab {
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  color: #d8e7f9;
  white-space: nowrap;
}

.watch-tab.active,
.watch-season-tab.active,
.watch-category-chip.active {
  background: linear-gradient(135deg, #00e5ff, #7df7ff);
  color: #04101a;
}

.watch-search-shell {
  position: relative;
}

.watch-search-shell .watch-input {
  padding-right: 46px;
}

.watch-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4f8ff;
}

.watch-rail-top,
.watch-selection-head,
.watch-series-panel-top,
.watch-shelf-head,
.watch-player-topbar {
  justify-content: space-between;
}

.watch-rail-title,
.watch-shelf-title {
  margin: 0;
}

.watch-category-rail {
  display: grid;
  gap: 10px;
  max-height: none;
  overflow: visible;
  padding-right: 6px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 255, 0.3) transparent;
}

.watch-category-rail::-webkit-scrollbar,
.watch-shelf-track::-webkit-scrollbar,
.watch-series-list::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

.watch-category-rail::-webkit-scrollbar-thumb,
.watch-shelf-track::-webkit-scrollbar-thumb,
.watch-series-list::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.3);
  border-radius: 999px;
}

.watch-category-chip {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 16px;
  white-space: normal;
  background: rgba(255, 255, 255, 0.06);
  color: #f2f7ff;
  text-align: left;
}

.watch-category-chip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.watch-category-chip strong {
  flex: 0 0 auto;
  min-width: 36px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  text-align: center;
}

.watch-search-mode-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.18);
  color: #dffbff;
}

.watch-search-mode-card span,
.watch-search-mode-card small {
  color: #aeb7ca;
  line-height: 1.5;
}

.watch-hero-banner,
.watch-content-grid {
  display: none;
}

.watch-tab-search .watch-rail-top,
.watch-tab-search .watch-category-rail {
  display: none;
}

.watch-app-layout,
.watch-tab-search .watch-app-layout {
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
}

/* =========
   MY ACCOUNT
   ========= */
.account-main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 52px;
}

.account-hero {
  padding: 30px;
  margin-bottom: 22px;
}

.account-hero p {
  max-width: 760px;
  margin-top: 10px;
  color: #aeb7ca;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.account-stack {
  display: grid;
  gap: 22px;
}

.account-card {
  padding: 22px;
}

.account-card h2,
.account-card h3 {
  margin: 0;
}

.account-card p {
  color: #aeb7ca;
}

.account-copy {
  margin: 10px 0 0;
}

.account-badge-row,
.account-inline-actions,
.account-list-head,
.account-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.account-badge,
.account-meta-pill,
.account-verified-chip,
.account-main-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce7ff;
  font-size: 0.92rem;
}

.account-main-badge {
  background: linear-gradient(135deg, #00e5ff, #7df7ff);
  color: #04101a;
  font-weight: 700;
}

.account-section-divider {
  height: 1px;
  margin: 18px 0;
  background: rgba(255, 255, 255, 0.08);
}

.account-verified-chip {
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 18px;
}

.account-verified-text {
  display: grid;
  gap: 4px;
}

.account-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.account-list-item {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.account-list-head {
  justify-content: space-between;
}

.account-list-title {
  display: grid;
  gap: 4px;
}

.account-list-title strong {
  font-size: 1rem;
}

.account-list-title span,
.account-help,
.account-empty {
  color: #aeb7ca;
}

.account-empty {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.account-inline-actions {
  margin-top: 16px;
}

.account-status {
  margin-top: 16px;
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
}

.account-status strong {
  display: block;
  margin-bottom: 4px;
}

.account-status p {
  margin: 0;
  color: #dffbff;
}

.account-note {
  margin-top: 14px;
  color: #aeb7ca;
  font-size: 0.94rem;
}

@media (max-width: 960px) {
  .account-grid {
    grid-template-columns: 1fr;
  }

  .account-hero,
  .account-card {
    padding: 18px;
  }
}

.watch-library-rail,
.watch-tab-search .watch-library-rail {
  align-self: start;
}

.watch-shelves,
.watch-tab-search .watch-shelves {
  margin-top: 0;
}

body:not(.watch-tab-search) .watch-library-rail .form-row {
  display: none;
}

.watch-main-column {
  min-width: 0;
}

.watch-hero-banner {
  min-height: 250px;
  padding: 28px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.16), rgba(3, 8, 20, 0.92));
  background-size: cover;
  background-position: center;
}

.watch-hero-banner.is-neutral {
  background-image: linear-gradient(160deg, rgba(0, 229, 255, 0.14), rgba(3, 8, 20, 0.94));
}

.watch-hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.watch-hero-content h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.watch-hero-content p {
  margin: 0;
  color: #d6e2f2;
  line-height: 1.6;
}

.watch-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.watch-selection-body {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.watch-selection-art {
  height: 130px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(125, 247, 255, 0.06));
  color: #8cf0ff;
  overflow: hidden;
}

.watch-selection-art.has-image img,
.watch-poster-image,
.watch-episode-card-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-status,
.watch-note,
.watch-selection-summary {
  margin: 0;
  line-height: 1.6;
}

.watch-series-panel {
  gap: 14px;
}

.watch-season-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.watch-season-tab {
  min-height: 40px;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #ecf6ff;
}

.watch-series-list {
  max-height: 560px;
  overflow: auto;
}

.watch-episode-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.watch-episode-card.is-watched {
  border-color: rgba(0, 229, 255, 0.22);
}

.watch-episode-play {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  text-align: left;
  background: transparent;
  color: inherit;
}

.watch-episode-art-wrap {
  display: block;
  height: 74px;
  border-radius: 16px;
  overflow: hidden;
}

.watch-episode-card-art.watch-poster-fallback,
.watch-poster-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(125, 247, 255, 0.06));
  color: #8cf0ff;
}

.watch-episode-body,
.watch-poster-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.watch-episode-title,
.watch-poster-title {
  font-weight: 700;
  color: #f4f8ff;
}

.watch-episode-toggle {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.14);
  color: #ccf7ff;
}

.watch-episode-toggle.is-watched {
  background: linear-gradient(135deg, #00e5ff, #7df7ff);
  color: #04101a;
}

.watch-shelves {
  margin-top: 22px;
}

.watch-channel-list {
  min-height: 120px;
}

.watch-shelf-list {
  display: grid;
  gap: 18px;
}

.watch-shelf-row {
  display: grid;
  gap: 14px;
}

.watch-shelf-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
  overflow: visible;
  padding-bottom: 10px;
}

.watch-tab-search .watch-shelf-track {
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 220px);
  grid-template-columns: none;
  overflow-x: auto;
}

.watch-poster-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: inherit;
  text-align: left;
}

.watch-poster-card.active {
  border-color: rgba(0, 229, 255, 0.36);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.12);
}

.watch-poster-favorite {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(5, 8, 17, 0.78);
  color: rgba(255, 255, 255, 0.55);
}

.watch-poster-favorite.is-active {
  color: #ffd95c;
}

.watch-poster-media {
  display: block;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.watch-empty {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #aeb7ca;
}

.watch-poster-skeleton {
  pointer-events: none;
}

.watch-poster-skeleton .watch-poster-media {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  animation: watch-shimmer 1.2s infinite linear;
}

.watch-skeleton-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  animation: watch-shimmer 1.2s infinite linear;
}

.watch-skeleton-line-lg {
  width: 78%;
}

.watch-toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  transform: translate(-50%, 12px);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(6, 12, 24, 0.92);
  color: #f4f8ff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10000;
}

.watch-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.watch-player-page {
  width: min(1400px, calc(100% - 32px));
  margin: 28px auto;
  padding: 22px;
}

.watch-player-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.8fr);
  gap: 24px;
}

.watch-player-stage {
  padding: 18px;
}

.watch-player-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: #000;
}

.watch-player-side {
  align-content: start;
}

.watch-player-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 17, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.watch-player-modal-content {
  width: min(1400px, 100%);
  padding: 22px;
}

.watch-modal-open {
  overflow: hidden;
}

.watch-side-block {
  gap: 10px;
}

.watch-launch-actions {
  flex-wrap: wrap;
}

@keyframes watch-shimmer {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}

@media (max-width: 1100px) {
  .watch-app-layout,
  .watch-player-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .watchnow-main,
  .watch-player-page {
    width: min(100% - 20px, 100%);
    padding-top: 18px;
  }

  .watch-auth-card,
  .watch-card,
  .watch-player-modal-content,
  .watch-player-page {
    padding: 16px;
    border-radius: 20px;
  }

  .watch-app-topbar,
  .watch-account-tools,
  .watch-player-topbar,
  .watch-series-panel-top,
  .watch-shelf-head,
  .watch-selection-body,
  .watch-episode-play {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .watch-tab-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

  .watch-selection-body {
    display: grid;
  }

  .watch-selection-art {
    width: 100%;
  }

  .watch-shelf-track {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .watch-tab-search .watch-shelf-track {
    grid-auto-columns: minmax(160px, 72vw);
    grid-template-columns: none;
  }

  .watch-episode-card {
    grid-template-columns: 1fr;
  }

  .watch-player-modal {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .watch-tab-strip {
    grid-template-columns: 1fr;
  }

  .watch-auth-card {
    margin-top: 20px;
  }

  .watch-player-video {
    border-radius: 16px;
  }
}

/* =========
   HOMEPAGE MEDIA FIXES
   ========= */
.hero-screen {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-screen-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #030712;
}

.media-frame-room {
  min-height: 320px;
}

.media-frame-tv {
  aspect-ratio: 16 / 9;
}

.media-frame-tablet {
  aspect-ratio: 4 / 3;
}

.media-frame-tv .about-image,
.media-frame-tablet .about-image,
.media-frame-room .about-image {
  width: 100%;
  height: 100%;
}

.media-fit-cover {
  object-fit: cover;
}

.media-fit-contain {
  object-fit: contain;
  background: #030712;
}

.media-tablet-shot {
  padding: 6px;
}

@media (max-width: 640px) {
  .site-header {
    backdrop-filter: blur(18px);
  }

  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 0 12px;
  }

  .logo-link {
    justify-content: center;
  }

  .logo-img {
    height: 56px;
    width: 56px;
    border-radius: 16px;
  }

  .nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav a {
    flex: 0 0 auto;
    min-height: 38px;
    font-size: 0.84rem;
    padding: 8px 12px;
  }

  .mikes-language-switcher {
    justify-content: space-between;
    width: 100%;
  }

  .hero {
    padding: 42px 0 40px;
    background-position: 62% center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .hero-text {
    max-width: none;
  }

  .hero-tagline {
    margin-bottom: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.04;
    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: 0.98rem;
    margin-bottom: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-pill {
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.82rem;
    text-align: center;
  }

  .hero-note {
    font-size: 0.9rem;
  }

  .hero-media {
    min-height: 0;
    display: grid;
    gap: 12px;
    justify-items: stretch;
  }

  .hero-screen {
    width: 100%;
    max-width: none;
    padding: 10px;
    border-radius: 20px;
  }

  .hero-screen-image {
    border-radius: 14px;
  }

  .hero-media-badge {
    position: static;
    max-width: none;
    width: 100%;
    text-align: center;
    padding: 9px 12px;
    border-radius: 14px;
    font-size: 0.84rem;
  }

  .hero-media-badge-top {
    order: 2;
  }

  .hero-screen {
    order: 1;
  }

  .hero-media-badge-bottom {
    order: 3;
  }

  .section {
    padding: 42px 0;
  }

  .section h1,
  .section h2 {
    font-size: 1.55rem;
    margin-bottom: 14px;
  }

  .lead {
    font-size: 0.96rem;
  }

  .install-device-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .device-recommendation-grid {
    grid-template-columns: 1fr;
  }

  .device-recommendation-card {
    padding: 16px;
    border-radius: 20px;
  }

  .device-art {
    min-height: 180px;
  }

  .device-art img {
    max-height: 200px;
  }

  .about-layout,
  .media-showcase-layout,
  .proof-grid,
  .pricing-grid-three,
  .reviews-intro,
  .review-form-grid,
  .review-summary,
  .review-summary-side {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-card,
  .library-stat-card,
  .plan-card,
  .support-card,
  .card,
  .proof-card {
    padding: 16px;
    border-radius: 18px;
  }

  .library-stat-value,
  .plan-price,
  .price {
    font-size: 1.8rem;
  }

  .popular-plan {
    transform: none;
  }

  .media-frame-room,
  .media-frame-tv,
  .media-frame-tablet {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 14px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-media-badge-top {
    display: none;
  }

  .hero-screen {
    padding: 8px;
  }
}
