/* ==========================================================================
   imperio iptv â€” DESIGN SYSTEM (Electric Emerald + Cyber Cyan)
   Site: https://imperioiptv.shop
   ========================================================================== */

:root {
  --bg: #05080E;
  --bg-surface: #0A0F1D;
  --card-bg: #0C1322;
  --card-bg2: #10192D;
  --card-border: rgba(0, 255, 135, 0.16);
  --card-border-hi: rgba(0, 210, 255, 0.45);
  
  --emerald: #00FF87;
  --emerald-glow: rgba(0, 255, 135, 0.35);
  --cyan: #00D2FF;
  --cyan-glow: rgba(0, 210, 255, 0.35);
  
  --text: #EDF2F9;
  --muted: #8E9BAE;
  --faint: #526077;
  --line: rgba(255, 255, 255, 0.08);
  
  --gold: #F6C453;
  --gold2: #E8A020;
  --ink: #05080E;
  --wa: #25D366;
  --danger: #FF4D4D;
  
  --radius-card: 16px;
  --radius-btn: 8px;
  --radius-pill: 9999px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --shadow-glow: 0 0 25px rgba(0, 255, 135, 0.2), 0 0 45px rgba(0, 210, 255, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 255, 135, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 35%, rgba(0, 210, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(0, 255, 135, 0.03) 0%, transparent 55%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ==========================================================================
   TOP URGENCY BANNER
   ========================================================================== */
.urgency-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 20px;
  background: linear-gradient(90deg, #00FF87, #00D2FF 65%, #00B3FF);
  color: #040810;
  font: 700 13px/1.3 var(--font);
  letter-spacing: .01em;
  text-align: center;
  z-index: 100;
}

.urgency-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.6) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: banner-sheen 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes banner-sheen {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.ub-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #05080E;
  color: var(--emerald);
  font: 800 11px var(--font);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  z-index: 1;
}

.ub-flag svg {
  width: 12px;
  height: 12px;
}

.ub-text {
  z-index: 1;
}

.ub-text b {
  font-weight: 800;
  color: #000;
}

/* ==========================================================================
   NAVIGATION / HEADER (Glassmorphism & Live Pill)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 8, 14, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--emerald);
  box-shadow: 0 0 12px rgba(0, 255, 135, 0.3);
}

.header__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #FFFFFF 0%, #00FF87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.header__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid rgba(0, 255, 135, 0.25);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.header__nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
}

.header__nav-link:hover, .header__nav-link.active {
  color: #FFF;
  text-shadow: 0 0 8px rgba(0, 255, 135, 0.4);
}

.header__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--cyan) 100%);
  color: #05080E;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: var(--radius-btn);
  box-shadow: 0 0 16px rgba(0, 255, 135, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header__cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 24px rgba(0, 210, 255, 0.5);
}

/* Mobile toggle button */
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 5px;
}

.header__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header__mobile-overlay.open {
  display: block;
  opacity: 1;
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: min(320px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #0C1220 0%, #060911 100%);
  border-left: 1px solid rgba(0, 255, 135, 0.2);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.85);
  z-index: 1999;
  padding: 24px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.header__mobile-menu.open {
  right: 0;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header__mobile-menu > .header__mobile-close {
  align-self: flex-end;
}

.header__mobile-close:hover {
  color: #FFF;
  background: rgba(255, 77, 77, 0.2);
  border-color: rgba(255, 77, 77, 0.4);
}

.mobile-menu__status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid rgba(0, 255, 135, 0.22);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.03em;
}

.header__mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 4px 0;
}

.header__mobile-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #DDE5F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.header__mobile-link:hover, .header__mobile-link.active {
  color: var(--emerald);
  background: rgba(0, 255, 135, 0.08);
  border-color: rgba(0, 255, 135, 0.15);
  transform: translateX(4px);
}

.mobile-menu__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__btn-plan {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 800;
}

.mobile-menu__btn-wtsp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-btn);
  transition: all 0.2s ease;
}

.mobile-menu__btn-wtsp:hover {
  background: #25D366;
  color: #05080E;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   BUTTONS & COMMON UI TOKENS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-btn);
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--cyan) 100%);
  color: #05080E;
  box-shadow: 0 4px 20px var(--emerald-glow);
}

.btn--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 30px var(--cyan-glow);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--card-border);
}

.btn--secondary:hover {
  background: rgba(0, 255, 135, 0.1);
  border-color: var(--emerald);
  transform: translateY(-2px);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid rgba(0, 255, 135, 0.25);
  color: var(--emerald);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #FFF;
}

.section-title span {
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  background: #05080E url('/images/Preview/Preview 1.webp') center center / cover no-repeat;
}

.hero__video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.77vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.65;
  filter: contrast(1.15) saturate(1.2);
  transition: opacity 0.5s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 14, 0.45) 0%, rgba(5, 8, 14, 0.72) 55%, var(--bg) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.hero__text-side {
  flex: 1 1 55%;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero__title span {
  background: linear-gradient(90deg, var(--emerald) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.55;
}

.hero__quote-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--emerald);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #D1D9E6;
  font-style: italic;
  margin-bottom: 28px;
}

.hero__stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero__stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__stat-pill b {
  color: #FFF;
}

.hero__stat-pill svg {
  color: var(--emerald);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__trust-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero__trust-line svg {
  color: var(--emerald);
}

.hero__media-side {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   FLASH SALE CARD (DESIGN STYLE)
   ========================================================================== */
.flash-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(160deg, #121826 0%, #080D18 100%);
  border: 1px solid rgba(0, 255, 135, 0.35);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 0 50px rgba(0, 255, 135, 0.15), 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.flash-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 255, 135, 0.25), transparent 70%);
  pointer-events: none;
}

.flash-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #00FF87, #00D2FF);
  color: #040810;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
  animation: flash-pulse 1.8s ease-in-out infinite;
}

@keyframes flash-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(0, 255, 135, 0); }
}

.flash-sub {
  color: #FFF;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 0;
  width: 74px;
}

.cd-num {
  color: #FFF;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.cd-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.6rem;
  font-weight: 700;
  padding-bottom: 18px;
}

.btn-claim {
  display: block;
  background: linear-gradient(90deg, #00FF87, #00D2FF);
  color: #040810;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px rgba(0, 255, 135, 0.35);
}

.btn-claim:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 210, 255, 0.5);
}

/* ==========================================================================
   CAROUSELS (PURE CSS SCROLL-SNAP & ASPECT RATIOS)
   ========================================================================== */
.carousel-wrap {
  position: relative;
  width: 100%;
  margin: 30px 0;
  overflow: hidden;
}

.carousel-wrap {
  position: relative;
  width: 100%;
  margin: 30px 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  animation: carouselGlideLeft 35s linear infinite;
  padding: 10px 0 20px;
}

.carousel-track:hover,
.carousel-track:active {
  animation-play-state: paused;
}

@keyframes carouselGlideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel--sports .carousel-track {
  animation-duration: 28s;
}

.carousel--movies .carousel-track {
  animation-duration: 36s;
}

.carousel--devices .carousel-track {
  animation-duration: 26s;
}

.carousel--reviews .carousel-track {
  animation-duration: 46s;
}

.carousel--wtsp .carousel-track {
  animation-duration: 30s;
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: var(--card-border-hi);
  border-radius: 3px;
}

.carousel-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.carousel-item:hover {
  transform: translateY(-4px);
  border-color: var(--emerald);
}

/* Aspect ratio rules */
.carousel--logos .carousel-item {
  width: 140px;
}
.carousel--logos img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 12px;
}

.carousel--movies .carousel-item {
  width: 180px;
}
.carousel--movies img {
  aspect-ratio: 1 / 1.482;
  object-fit: cover;
}

.carousel--sport .carousel-item {
  width: 220px;
}
.carousel--sport img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.carousel--devices .carousel-item {
  width: 200px;
}
.carousel--devices img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.carousel--preview .carousel-item {
  width: 440px;
}
.carousel--preview img {
  aspect-ratio: 2.22 / 1;
  object-fit: cover;
}

.carousel--reviews .carousel-item {
  width: 320px;
}
.carousel--reviews img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.carousel--wtsp .carousel-item {
  width: 240px;
}
.carousel--wtsp img {
  aspect-ratio: 473 / 1024;
  object-fit: cover;
}

/* ==========================================================================
   SECTION 5: COMPARES TABLE
   ========================================================================== */
.compares-section {
  padding: 80px 0;
  background: rgba(10, 15, 29, 0.5);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compares-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 30px;
}

.compares-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.compares-table th, .compares-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compares-table th {
  background: #0E1626;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFF;
}

.compares-table th.brand-col {
  background: rgba(0, 255, 135, 0.1);
  color: var(--emerald);
  border-top: 2px solid var(--emerald);
}

.compares-table td.brand-col {
  background: rgba(0, 255, 135, 0.03);
  font-weight: 700;
  color: #FFF;
}

.compares-table td.brand-col b {
  color: var(--emerald);
}

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

/* ==========================================================================
   SECTION 6: INTERACTIVE PRICING MATRIX
   ========================================================================== */
.pricing-section {
  padding: 90px 0;
  position: relative;
}

.screens-selector-wrap {
  margin-bottom: 40px;
}

.screens-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.screen-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

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

.screen-card.active {
  background: rgba(0, 255, 135, 0.08);
  border-color: var(--emerald);
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.25);
}

.screen-card__num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFF;
}

.screen-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.screen-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
  color: #05080E;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-card);
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hi);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #101B2E 0%, var(--card-bg) 100%);
  border: 2px solid var(--emerald);
  box-shadow: 0 0 35px rgba(0, 255, 135, 0.2);
}

.pricing-card__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
  color: #040810;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.pricing-card__duration {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 8px;
}

.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.pricing-card__currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--emerald);
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFF;
  line-height: 1;
}

.pricing-card__breakdown {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #D3DBE6;
}

.pricing-card__feature svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.pricing-card__feature.active svg {
  color: var(--emerald);
}

.pricing-card__feature.disabled {
  color: var(--faint);
  text-decoration: line-through;
}

.pricing-card__feature.disabled svg {
  color: var(--faint);
}

.pricing-card-horizontal {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-card);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pricing-card-horizontal:hover {
  border-color: var(--emerald);
}

.pricing-breakdown-bar {
  background: rgba(0, 255, 135, 0.06);
  border: 1px solid rgba(0, 255, 135, 0.2);
  border-radius: var(--radius-card);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pricing-breakdown-bar__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-breakdown-bar__highlight {
  font-weight: 700;
  color: #FFF;
  font-size: 1.05rem;
}

.pricing-breakdown-bar__savings {
  color: var(--emerald);
  font-weight: 600;
  font-size: 0.9rem;
}

.payment-icons-strip {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icons-strip img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   SECTION 7 & 8: TRUSTPILOT HTML & REVIEWS MARQUEE
   ========================================================================== */
.reviews {
  background: #080C14;
  padding: 96px 0 110px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.reviews-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 24px;
  text-align: center;
}

.tp-badge {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 40px;
  font-size: 1rem;
}

.tp-left, .tp-right {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
}

.tp-left {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  color: #fff;
}

.tp-star-icon {
  color: #00b67a;
  font-size: 1.25rem;
  line-height: 1;
}

.tp-stars-row {
  display: flex;
  gap: 3px;
}

.tp-stars-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #00b67a;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.tp-score {
  color: #fff;
  font-weight: 600;
}

.reviews-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.reviews-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
  will-change: transform;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.rev-card {
  flex: 0 0 auto;
  width: 430px;
  background: #111726;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px 30px 34px;
  display: flex;
  flex-direction: column;
}

.rev-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.rev-stars-row {
  display: flex;
  gap: 3px;
}

.rev-stars-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  background: #00b67a;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.rev-stars-row span.g {
  background: #3a3a3a;
}

.rev-date {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
}

.rev-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.rev-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.65;
  flex: 1;
}

.rev-author {
  color: #fff;
  font-weight: 700;
  margin-top: 26px;
  font-size: 1.05rem;
}

/* ==========================================================================
   SECTION 9: 3-STEP ACTIVATION
   ========================================================================== */
.activation-section {
  padding: 80px 0;
}

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

.activation-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.25s ease;
}

.activation-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.activation-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}

.activation-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 12px;
}

.activation-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 13: FUNCTIES / RECURSOS GRID
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-box {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 30px 24px;
  transition: all 0.25s ease;
}

.feature-box:hover {
  border-color: var(--emerald);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 255, 135, 0.1);
}

.feature-box__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 255, 135, 0.1);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 255, 135, 0.2);
}

.feature-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 14: FAQS ACCORDION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background: rgba(8, 12, 20, 0.6);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--emerald);
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFF;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--emerald);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "âˆ’";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================================================
   SOCIAL PROOF POPUP (Bottom-Left)
   ========================================================================== */
.social-proof-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 990;
  max-width: 320px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 135, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  pointer-events: auto;
}

.social-proof-popup.show {
  transform: translateX(0);
  opacity: 1;
}

.sp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 255, 135, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--emerald);
}

.sp-body {
  flex: 1;
}

.sp-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFF;
  line-height: 1.3;
}

.sp-time {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

.sp-verified {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--emerald);
  margin-top: 2px;
}

.sp-close {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 1rem;
  color: var(--faint);
  cursor: pointer;
  line-height: 1;
}

.sp-close:hover {
  color: #FFF;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Bottom-Right)
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse-whatsapp 2.2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.75);
  color: #FFF;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #FFFFFF;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   SITE FOOTER (3 Columns + Mobile collapse)
   ========================================================================== */
.site-footer {
  background: #04060B;
  border-top: 1px solid rgba(0, 255, 135, 0.2);
  padding: 80px 0 40px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), var(--cyan), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--emerald);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--emerald);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ==========================================================================
   SUBPAGE & BLOG ARTICLE STYLES
   ========================================================================== */
.subpage-header {
  padding: 70px 0 40px;
  text-align: center;
  background: radial-gradient(circle at 50% 10%, rgba(0, 255, 135, 0.08), transparent 70%);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--emerald);
}

.breadcrumbs span {
  color: var(--faint);
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #DDE5F0;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFF;
  margin: 40px 0 16px;
  border-left: 4px solid var(--emerald);
  padding-left: 14px;
}

.article-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFF;
  margin: 28px 0 12px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  margin: 0 0 24px 24px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body img {
  border-radius: var(--radius-card);
  border: 1px solid var(--card-border);
  margin: 30px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.article-cta-box {
  background: linear-gradient(135deg, rgba(0, 255, 135, 0.1) 0%, rgba(0, 210, 255, 0.08) 100%);
  border: 1px solid var(--card-border-hi);
  border-radius: var(--radius-card);
  padding: 36px 30px;
  text-align: center;
  margin: 48px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0 80px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--emerald);
}

.blog-card__img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--emerald);
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card__link {
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 992px) {
  .site-header .header__status {
    display: none !important;
  }

  .hero__content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero__stats-row, .hero__ctas {
    justify-content: center;
  }
  
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .screens-row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .activation-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  
  .header__inner {
    height: 60px;
    padding: 0 10px;
  }
  
  .header__brand {
    gap: 8px;
    flex-shrink: 0;
  }
  
  .header__logo-img {
    width: 32px;
    height: 32px;
  }
  
  .header__brand-name {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .header__cta-btn {
    padding: 7px 11px;
    font-size: 0.78rem;
    gap: 4px;
    white-space: nowrap;
    border-radius: 8px;
    flex-shrink: 0;
  }
  
  .header__cta-btn svg {
    width: 13px;
    height: 13px;
  }
  
  .header__toggle {
    display: flex;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
  
  .hero {
    padding: 36px 16px 30px 16px;
    min-height: auto;
    text-align: center;
  }
  
  .hero__video-wrap {
    background-position: center 30%;
  }

  .hero__video-iframe {
    width: 260%;
    height: 100%;
    min-width: 0;
    min-height: 100%;
    opacity: 0.55;
  }
  
  .hero__title {
    font-size: 2.2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .screens-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .social-proof-popup {
    left: 12px;
    right: 12px;
    max-width: calc(100vw - 24px);
    bottom: 16px;
  }
  
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ==========================================================================
   ADULT CHANNELS (+18) ADD-ON TOGGLE BAR
   ========================================================================== */
.adult-addon-bar {
  max-width: 820px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, rgba(16, 25, 45, 0.95), rgba(10, 15, 29, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.adult-addon-bar:hover {
  border-color: rgba(0, 255, 135, 0.35);
}

.adult-addon-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.adult-addon-icon {
  font-size: 1.8rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(255, 77, 77, 0.4));
}

.adult-addon-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.adult-addon-text strong {
  color: #FFF;
  font-size: 0.98rem;
  font-weight: 700;
}

.adult-addon-text span {
  color: var(--muted);
  font-size: 0.82rem;
}

.adult-addon-action {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.adult-addon-pill {
  background: rgba(255, 77, 77, 0.15);
  border: 1px solid rgba(255, 77, 77, 0.35);
  color: #FF7070;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  cursor: pointer;
  margin: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1A2338;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #FFF;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
  border-color: var(--emerald);
  box-shadow: 0 0 12px rgba(0, 255, 135, 0.5);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
  background-color: #05080E;
}

.adult-addon-status {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 130px;
  transition: color 0.2s ease;
}

.adult-addon-status.active {
  color: var(--emerald);
  text-shadow: 0 0 8px rgba(0, 255, 135, 0.4);
}

@media (max-width: 640px) {
  .adult-addon-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  .adult-addon-action {
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
  }
}