    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

    :root{
      --bg:#000000;
      --card:rgba(255,255,255,.06);
      --border:rgba(120,150,230,.16);
      --border-soft:rgba(120,150,230,.08);
      --border-strong:rgba(120,150,230,.28);
      --text:#EEF1FF;
      --muted:rgba(238,241,255,.72);
      --shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
      --radius:18px;

      --grad: linear-gradient(90deg, #5f3ae6, #0d35b9, #1067a1);
      --tap:#40b0fa;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 700px at 15% 10%, rgba(13,53,185,.24), transparent 60%),
        radial-gradient(900px 700px at 85% 15%, rgba(95,58,230,.18), transparent 60%),
        var(--bg);
      line-height:1.5;
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{max-width:1100px; margin:0 auto; padding:24px}
    .note{color: rgba(238,241,255,.68); font-weight:800; font-size:12px}

    header{
      position:sticky; top:0; z-index:60;
      backdrop-filter: blur(10px);
      background: rgba(7,9,20,.55);
      border-bottom:1px solid var(--border);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      padding:14px 24px;
      max-width:1100px; margin:0 auto;
    }
    .brand{display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.3px}
    .brand img{
      width:38px; height:38px; object-fit:contain;
      filter: drop-shadow(0 10px 20px rgba(95,58,230,.16));
    }

    .navlinks{display:flex; gap:14px; align-items:center; font-weight:700; color:rgba(238,241,255,.88)}
    .navlinks a{padding:8px 10px; border-radius:12px}
    .navlinks a:hover{background:rgba(255,255,255,.06)}

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      padding:12px 16px; border-radius:14px;
      border:1px solid var(--border);
      background: rgba(255,255,255,.06);
      color:var(--text);
      font-weight:700;
      transition: transform .18s ease, background .18s ease;
      cursor:pointer;
      user-select:none;
      -webkit-tap-highlight-color: transparent;
      gap:10px;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px)}
    .btn:active{transform: translateY(0px) scale(.99)}

    .btn.primary{
      border:none;
      color:#ffffff;
      background: var(--grad);
      background-size: 200% 200%;
      background-position: 0% 50%;
      transition: transform .18s ease, background-position .55s ease, background .30s ease;
      box-shadow: 0 16px 40px rgba(13,53,185,.18);
    }
    .btn.primary:hover,
    .btn.primary:active{ background-position: 100% 50%; }
    .btn.primary.clicked{
      background: var(--tap) !important;
      background-position: 50% 50% !important;
    }
      
    /* =========================
       HEADER (burger)
    ========================= */
    header{
      position:sticky; top:0; z-index:60;
      backdrop-filter: blur(12px);
      background: rgba(7,9,20,.58);
      border-bottom:1px solid var(--border);
    }
    .nav{
      max-width:1200px; margin:0 auto;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      padding:14px 18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:700;
      letter-spacing:.2px;
    }
    .brand img{
      width:38px;height:38px;object-fit:contain;
      filter: drop-shadow(0 10px 20px rgba(95,58,230,.16));
    }

    .burger{
      width:44px; height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:12px;
      border:none;
      background: transparent;
      cursor:pointer;
      user-select:none;
      -webkit-tap-highlight-color: transparent;
      transition: background .18s ease;
    }
    .burger:hover{ background: rgba(255,255,255,.06); }
    .burger:active{ background: rgba(255,255,255,.10); }
    .burger .lines{width:18px; height:14px; position:relative}
    .burger .lines span{
      position:absolute; left:0;
      width:100%; height:2px;
      border-radius: 999px;
      background: rgba(238,241,255,.92);
      transition: transform .28s ease, top .28s ease, opacity .18s ease;
    }
    .burger .lines span:nth-child(1){top:0}
    .burger .lines span:nth-child(2){top:6px}
    .burger .lines span:nth-child(3){top:12px}
    .burger.open .lines span:nth-child(1){top:6px; transform: rotate(45deg)}
    .burger.open .lines span:nth-child(2){opacity:0}
    .burger.open .lines span:nth-child(3){top:6px; transform: rotate(-45deg)}

    .menu{
      position:fixed;
      left:0; right:0;
      top:64px;
      z-index:70;
      display:none;
      padding:0 14px 14px;
    }
    .menu.open{display:block}
    .menu-panel{
      max-width:1200px;
      margin:0 auto;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(10,12,24,.86);
      backdrop-filter: blur(14px);
      border-radius: 18px;
      box-shadow: 0 22px 70px rgba(0,0,0,.62);
      overflow:hidden;

      transform: translateY(-12px);
      opacity:0;
      animation: menuIn .26s ease forwards;
    }
    @keyframes menuIn{to{transform: translateY(0); opacity:1}}

    .menu-grid{
      display:grid;
      align-items:start;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      padding:14px;
    }
    .menu-item{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      border-radius: 16px;
      padding:12px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      transition: transform .18s ease, background .18s ease;
      cursor:pointer;
    }
    .menu-item:hover{transform: translateY(-1px); background: rgba(255,255,255,.06)}
    .menu-item .left{display:flex; align-items:center; gap:10px; font-weight:700}
    .menu-item i{opacity:.9}

    /* ✅ makes the Search BUTTON look identical to other menu items */
    .menu-item.btn-item{
      width:100%;
      text-align:left;
      color:inherit;
      font: inherit;
    }

    /* Categories dropdown inside the menu */
    details.menu-dropdown{
      padding:0;
      background: rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.10);
      border-radius:16px;
      overflow:hidden;
      align-self:start;
      transition: transform .18s ease, background .18s ease;
    }
    details.menu-dropdown:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }
    details.menu-dropdown > summary{
      list-style:none;
      cursor:pointer;
      padding:12px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      transition: background .18s ease;
    }
    details.menu-dropdown > summary::-webkit-details-marker,
    details.menu-dropdown > summary::marker{ display:none; content:""; }
    details.menu-dropdown > summary:hover{ background: rgba(255,255,255,.04); }
    details.menu-dropdown > summary .left{display:flex; align-items:center; gap:10px; font-weight:700;}
    details.menu-dropdown > summary .chev{ transition: transform .22s ease; opacity:.9; }
    details.menu-dropdown[open] > summary .chev{ transform: rotate(180deg); }
    .menu-submenu{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:2px;
      padding: 2px 6px 8px;
    }
    .menu-subitem{
      border-radius:10px;
      padding:9px 10px;
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:500;
      color:var(--text);
      transition: background .16s ease;
    }
    .menu-subitem:hover{ background: rgba(255,255,255,.06); }
    .menu-subitem i{opacity:.75}
    @media (max-width: 720px){
      .menu-submenu{grid-template-columns: 1fr;}
    }

    .menu-actions{
      padding:0 14px 14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .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;
    }

    .close{
      position:absolute; top:12px; right:12px;
      width:38px; height:38px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(10,12,24,.78);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 20;
      box-shadow: 0 6px 18px rgba(0,0,0,.45);
      transition: background .18s ease, transform .18s ease, border-color .18s ease;
    }
    .close:hover{
      background: rgba(255,255,255,.16);
      border-color: rgba(255,255,255,.30);
      transform: scale(1.06);
    }
    .close:active{ transform: scale(.96); }

    /* HERO */
    /* Unified hero — same first section on every page */
    .hero,
    .heroTop,
    .panelHero,
    .tutHero,
    .faqHero,
    .updHero,
    .dHero,
    .pHero,
    .cHero{
      padding: 42px 0 22px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      max-width: 760px;
      margin: 0 auto;
      grid-template-columns: none;
    }
    /* Index home keeps the classic two-column hero */
    .hero.hero-classic{
      padding: 42px 0 14px;
      display: grid;
      grid-template-columns: 1.2fr .9fr;
      align-items: center;
      text-align: left;
      gap: 22px;
      max-width: none;
      margin: 0;
    }
    .hero.hero-classic .headline{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      line-height: 1.1;
      flex-wrap: wrap;
      justify-content: flex-start;
      font-size: clamp(34px, 4.2vw, 56px);
      letter-spacing: -1px;
      margin: 14px 0 10px;
    }
    .hero.hero-classic .sub{
      margin: 0;
      max-width: 62ch;
      color: var(--muted);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.55;
      text-align: left;
    }
    .hero.hero-classic .cta{
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 18px;
      justify-content: flex-start;
    }
    .hero.hero-classic .hero-art{
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 320px;
      width: 100%;
    }
    .hero.hero-classic .hero-art::before{
      content: "";
      position: absolute;
      display: block;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 40%,
        rgba(13,53,185,.18),
        rgba(16,103,161,.14),
        transparent 62%);
      filter: blur(12px);
      transform: translateY(12px);
      pointer-events: none;
    }
    .hero.hero-classic img.logo-float{
      width: 280px;
      height: auto;
      max-width: 80vw;
    }
    @media (max-width: 980px){
      .hero.hero-classic{ grid-template-columns: 1fr; text-align: center; }
      .hero.hero-classic > div{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
      }
      .hero.hero-classic .hero-art{ order: -1; min-height: 240px; }
      .hero.hero-classic .hero-art::before{ width: 280px; height: 280px; }
      .hero.hero-classic .headline{
        display: flex;
        justify-content: center;
        text-align: center;
        margin: 14px auto 10px;
        max-width: 100%;
        font-size: clamp(28px, 7vw, 42px);
      }
      .hero.hero-classic .sub{
        text-align: center;
        margin: 0 auto;
      }
      .hero.hero-classic .cta{
        justify-content: center;
        width: 100%;
      }
      .hero.hero-classic .rotator{
        text-align: center;
        min-width: 7ch;
      }
      .hero.hero-classic .word{
        left: 0; right: 0;
        text-align: center;
      }
      .hero.hero-classic img.logo-float{ max-width: 86vw; width: 260px; }
    }
    .hero .hero-logo,
    .hero img.hero-logo{
      width: 110px !important;
      height: 110px !important;
      max-width: none !important;
      object-fit: contain;
      margin: 0;
    }
    .hero .hero-title{
      margin: 0;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.6px;
      display: block;
    }
    .hero .hero-title .grad{
      background: var(--grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero .hero-sub{
      margin: 0;
      max-width: 64ch;
      color: var(--muted);
      font-weight: 500;
      font-size: 16px;
      line-height: 1.55;
    }
    .hero .hero-cta{
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 4px 0 0;
    }
    .hero .hero-art,
    .hero .heroLogoWrap,
    .heroTop .heroLogoWrap,
    .hero img.logo-float{
      min-height: auto;
      width: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero img.logo-float,
    .hero .heroLogo,
    .heroTop .heroLogo,
    .tutHero > img,
    .faqHero > img,
    .updHero > img,
    .dHero > img,
    .pHero > img,
    .cHero > img,
    .panelHero > img{
      width: 110px;
      height: 110px;
      max-width: none;
      object-fit: contain;
      margin: 0;
    }
    .hero .hero-art::before{ display: none; }
    .hero h1,
    .heroTop h1,
    .panelHero h1,
    .tutHero h1,
    .faqHero h1,
    .updHero h1,
    .dHero h1,
    .pHero h1,
    .cHero h1,
    .hero .headline,
    .heroTop .heroTitle,
    .heroTop h1.heroTitle{
      margin: 0;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.6px;
      display: block;
      flex-wrap: wrap;
      justify-content: center;
    }
    .hero .sub,
    .heroTop .heroDesc,
    .panelHero .sub,
    .tutHero .sub,
    .faqHero .sub,
    .updHero .sub,
    .dHero .sub,
    .pHero .sub,
    .cHero .sub,
    .hero > div > p,
    .heroTop > p{
      margin: 0;
      max-width: 64ch;
      color: var(--muted);
      font-weight: 500;
      font-size: 16px;
      line-height: 1.55;
    }
    .hero .cta,
    .heroTop .heroActions,
    .panelHero .cta,
    .tutHero .cta,
    .faqHero .cta,
    .updHero .cta,
    .dHero .cta,
    .pHero .cta,
    .cHero .cta{
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 4px 0 0;
    }
    /* ===== Unified typography ===== */
    h1,h2,h3,h4,h5,h6{
      margin:0;
      font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
      color: var(--text);
      font-weight: 800;
      letter-spacing: -0.4px;
      line-height: 1.12;
    }
    h1{
      margin:14px 0 10px;
      font-size: clamp(34px, 4.2vw, 56px);
      line-height:1.05;
      letter-spacing:-1px;
      font-weight: 800;
    }
    h2{
      font-size: clamp(22px, 2.6vw, 30px);
      letter-spacing: -0.5px;
      line-height: 1.14;
      font-weight: 800;
    }
    h3{
      font-size: clamp(17px, 1.6vw, 19px);
      letter-spacing: -0.2px;
      line-height: 1.2;
      font-weight: 700;
    }
    h4{ font-size: 15px; line-height: 1.3; font-weight: 700; letter-spacing: -0.1px; }
    h5{ font-size: 13px; line-height: 1.3; font-weight: 800; opacity: .92; }
    h6{ font-size: 12px; line-height: 1.35; font-weight: 800; opacity: .88; letter-spacing: .3px; text-transform: uppercase; }

    .title{ font-weight: 800; letter-spacing: -0.3px; }
    .sub{
      margin:0;
      color:var(--muted);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.55;
      max-width: 62ch;
    }
    .headline{
      display:inline-flex;
      align-items:center;
      gap:10px;
      line-height:1.1;
      flex-wrap:wrap;
    }
    .rotator{
      position:relative;
      display:inline-block;
      min-width: 10ch;
      height: 1em;
      line-height: 1em;
      vertical-align: baseline;
      perspective: 800px;
    }
    .word{
      position:absolute;
      left:0; top:0;
      height:1em; line-height:1em;
      opacity:0;
      transform: translateY(-8px) rotateX(90deg) scale(.98);
      transform-origin: 50% 120%;
      transition: transform .55s ease, opacity .35s ease;
      font-weight: 700;
      letter-spacing: .3px;
      background: var(--grad);
      -webkit-background-clip: text;
      background-clip:text;
      color: transparent;
      white-space:nowrap;
      filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
    }
    .word.active{opacity:1; transform: translateY(0) rotateX(0deg) scale(1)}
    .word.exit{opacity:0; transform: translateY(10px) rotateX(-95deg) scale(.96)}
    .cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; justify-content:center; }

    .hero-art{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      min-height: 320px;
      width:100%;
    }
    .hero-art::before{
      content:"";
      position:absolute;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 40%,
        rgba(13,53,185,.18),
        rgba(16,103,161,.14),
        transparent 62%);
      filter: blur(12px);
      transform: translateY(12px);
      pointer-events:none;
    }
    .logo-float{
      width: 280px;
      max-width: 80vw;
      height: auto;
      position:relative;
      z-index:1;
      display:block;
      filter:
        drop-shadow(0 22px 55px rgba(0,0,0,.55))
        drop-shadow(0 10px 30px rgba(13,53,185,.18));
      animation: floatSlow 6s ease-in-out infinite;
      transform-origin:center;
    }
    @keyframes floatSlow{
      0%   { transform: translateY(0px) scale(1); }
      50%  { transform: translateY(-10px) scale(1.01); }
      100% { transform: translateY(0px) scale(1); }
    }

    section{ padding: 44px 0; }
    section + section{ padding-top: 22px; }
    .section-title{
      font-size: clamp(22px, 2.6vw, 30px);
      font-weight: 800;
      margin: 0 0 8px;
      letter-spacing: -0.5px;
      line-height: 1.14;
    }
    .section-sub{
      margin: 0 0 22px;
      color: var(--muted);
      font-weight: 500;
      font-size: 15px;
      line-height: 1.55;
      max-width: 70ch;
    }

    .grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      margin-top: 14px;
    }
    .tile{
      border:1px solid var(--border);
      background: rgba(255,255,255,.04);
      border-radius: 16px;
      padding:14px;
    }
    .tile h3{margin:6px 0 6px; font-size:16px}
    .tile p{margin:0; color:var(--muted); font-size:14px}


    .bundleHeader{
      display:flex;
      align-items:flex-start; 
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      margin-bottom: 14px;
    }
    .bundleHeader .left{
      display:flex;
      flex-direction:column;
      gap:6px;
      min-width: 260px;
      flex: 1;
    }
    .bundleHeader .right{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      margin-top:2px; 
    }

  
    .filmWrap{
      border:none;
      background: transparent;
      border-radius: 0;
      padding:0;
      overflow:hidden;
      position:relative;
      min-height: 220px;
    }
    .filmWrap::after{ display:none; }

    .filmTrack{
      display:flex;
      gap:12px;
      align-items:stretch;
      width:max-content;
      animation: scrollLeft 56s linear infinite;
      will-change: transform;
      padding: 6px 0;
    }
    .filmTrack.series{ animation-duration: 54s; }
    .filmTrack.movies{ animation-duration: 90s; } /* ✅ slower movies */
    .filmTrack.channels{ animation-duration: 58s; }

    @keyframes scrollLeft{
      from{ transform: translateX(0); }
      to{ transform: translateX(-33.3333%); }
    }

    .posterCard{
      width:130px;
      flex:0 0 auto;
      border-radius: 16px;
      overflow:hidden;
      border:none;
      background: transparent;
      cursor:pointer;
      transition: transform .18s ease, filter .18s ease;
    }
    .posterCard:hover{
      transform: translateY(-2px);
      filter: brightness(1.06);
    }
    .posterImg{
      width:100%;
      height:auto;
      aspect-ratio: 2/3;
      object-fit: cover;
      display:block;
      background: rgba(255,255,255,.06);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,.35);
    }
    .posterMeta{
      padding:8px 2px 0;
      display:flex;
      flex-direction:column;
      gap:6px;
      background: transparent;
    }
    .posterTitle{
      font-weight:900;
      font-size:12px;
      line-height:1.2;
      min-height: 2.4em;
    }
    .posterMini{
      display:flex;
      justify-content:space-between;
      color: rgba(238,241,255,.70);
      font-weight:800;
      font-size:11px;
    }

    
    .chanCard{
      width: 210px;
      height: 112px;        
      flex: 0 0 auto;
      border:none;
      background: transparent;
      cursor:pointer;
      transition: transform .18s ease, filter .18s ease;
    }
    .chanCard:hover{
      transform: translateY(-2px);
      filter: brightness(1.06);
    }
    .chanInner{
      height: 112px;         
      border-radius: 16px;
      padding: 12px 12px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: 0 10px 30px rgba(0,0,0,.25);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .chanTitle{
      font-weight:700;
      letter-spacing:-.2px;
      font-size: 13px;
      line-height:1.15;
      margin:0;
      display:-webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;  
      overflow:hidden;
    }
    .chanMeta{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      color: rgba(238,241,255,.75);
      font-weight:800;
      font-size: 12px;
    }
    .chip{
      display:inline-flex;
      padding:5px 9px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color:rgba(238,241,255,.86);
      font-weight:800;
      font-size:11px;
      white-space:nowrap;
    }

    /* Pricing */
    .tabs{
      display:flex; gap:10px; flex-wrap:wrap;
      border:1px solid var(--border);
      background: rgba(255,255,255,.04);
      padding:8px;
      border-radius: 16px;
      width: fit-content;
      margin: 10px 0 16px;
    }
    .tab{
      padding:10px 14px;
      border-radius: 14px;
      font-weight:800;
      border:1px solid transparent;
      background: transparent;
    }
    .tab.active{
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.16);
      box-shadow: 0 12px 30px rgba(0,0,0,.25);
    }
    .plans{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .plan{
      border-radius: var(--radius);
      border:1px solid var(--border);
      background: rgba(255,255,255,.04);
      padding:18px;
    }
    .plan.popular{
      background: linear-gradient(180deg, rgba(95,58,230,.16), rgba(255,255,255,.03));
      box-shadow: 0 20px 60px rgba(13,53,185,.14);
    }
    .price{font-size:34px; margin:10px 0 4px; font-weight:700}
    .price small{font-size:14px; color:var(--muted); font-weight:900}
    ul{margin:12px 0 0; padding-left:18px; color:rgba(238,241,255,.9)}
    li{margin:8px 0; color:rgba(238,241,255,.86)}

    /* Cards used by Search modal */
    .card{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      border-radius: 16px;
      overflow:hidden;
      cursor:pointer;
      transition: transform .18s ease, background .18s ease;
    }
    .card:hover{transform: translateY(-2px); background: rgba(255,255,255,.06)}
    .poster{
      width:100%;
      height:auto;
      aspect-ratio: 2/3;
      background: rgba(255,255,255,.06);
      display:block;
      object-fit: cover;
    }
    .card .meta{padding:10px; display:flex; flex-direction:column; gap:6px;}
    .card .title{font-weight:900; font-size:13px; line-height:1.2; min-height: 2.4em;}
    .card .mini{display:flex; justify-content:space-between; align-items:center; color: var(--muted); font-size:12px; font-weight:800;}

    /* Modal */
    .modal{
      position: fixed;
      inset:0;
      background: rgba(0,0,0,.72);
      display:none;
      align-items:center;
      justify-content:center;
      padding: 24px 16px;
      z-index: 100;
      overflow-y: auto;
      animation: modalFade .22s ease;
    }
    @keyframes modalFade{ from{ opacity:0 } to{ opacity:1 } }
    .modal.open{display:flex}
    .modalbox{
      max-width: 780px;
      width: 100%;
      max-height: calc(100vh - 48px);
      overflow-y: auto;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(10,12,24,.96);
      border-radius: 22px;
      box-shadow: 0 24px 80px rgba(0,0,0,.65);
      display:flex;
      gap:18px;
      padding: 22px;
      align-items:flex-start;
      flex-wrap:wrap;
      position:relative;
      animation: modalIn .28s cubic-bezier(.5,.05,.2,1);
    }
    .modalbox:has(> .close){ padding-right: 64px; }
    @keyframes modalIn{
      from{ transform: translateY(16px) scale(.97); opacity: 0; }
      to{ transform: translateY(0) scale(1); opacity: 1; }
    }
    .modalbox img{
      width: 200px;
      height: 300px;
      flex: 0 0 auto;
      object-fit: cover;
      display:block;
      border-radius: 18px;
      background: rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      box-shadow: 0 18px 50px rgba(0,0,0,.45);
    }
    .modalcontent{
      flex:1;
      min-width: 240px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .modalcontent h3{
      margin:0;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -.3px;
      line-height: 1.2;
      padding-right: 4px;
    }
    .modalcontent p{margin:0; color:var(--muted); font-weight:500; line-height:1.55;}
    .modalactions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}
    .modalcontent .pill{
      display:inline-flex;
      padding:0;
      color: rgba(238,241,255,.62);
      font-weight:600;
      font-size:12px;
      letter-spacing:.1px;
      white-space:nowrap;
    }
    .modalcontent .pill + .pill::before{
      content:"·";
      padding-right:8px;
      opacity:.45;
    }
    .modalcontent > div:has(.pill){
      gap:14px !important;
    }
    @media (max-width: 600px){
      .modalbox{
        padding: 20px 18px;
        gap: 14px;
      }
      .modalbox:has(> .close){ padding-top: 60px; padding-right: 18px; }
      .modalbox img{ width:150px; height:225px; margin: 0 auto; }
      .modalcontent{ text-align:center; width: 100%; }
      .modalcontent h3{ font-size: 19px; padding-right: 0; }
      .modalcontent > div:has(.pill){ justify-content: center; }
      .modalactions{ justify-content:center; }
      .close{ top: 14px; right: 14px; }
    }

    /* Search modal */
    .searchModal{
      position:fixed; inset:0; z-index:180;
      display:none;
      align-items:center; justify-content:center;
      padding:16px;
      background: rgba(0,0,0,.72);
      backdrop-filter: blur(8px);
    }
    .searchModal.open{display:flex}
    .searchBox{
      width:min(980px, 100%);
      border-radius: 22px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(10,12,24,.92);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      transform: translateY(12px) scale(.98);
      opacity: 0;
      animation: pop .24s ease forwards;
    }
    @keyframes pop{to{ transform: translateY(0) scale(1); opacity: 1; } }
    .searchGlow{
      position:absolute; inset:-2px;
      background: var(--grad);
      filter: blur(22px);
      opacity:.22;
      pointer-events:none;
    }
    .searchInner{
      position:relative;
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .searchTopRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
    }
    .searchTitle{
      font-weight:700;
      letter-spacing:-.2px;
      font-size:16px;
    }
    .searchMeta{
      color:rgba(238,241,255,.70);
      font-weight:800;
      font-size:12px;
    }
    .searchInput{
      width:100%;
      padding:12px 12px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(0,0,0,.22);
      color: var(--text);
      outline: none;
      font-weight:800;
    }
    .searchInput::placeholder{color: rgba(238,241,255,.45)}
    .searchResults{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: 18px;
      padding:12px;
      max-height: min(62vh, 560px);
      overflow:auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
    }
    .searchGrid{
      display:grid;
      grid-template-columns: repeat(6, 1fr);
      gap:12px;
    }
    .poster.channelPoster{
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:10px;
      background: linear-gradient(180deg, rgba(13,53,185,.22), rgba(95,58,230,.12));
      color: rgba(238,241,255,.92);
      font-weight:700;
      letter-spacing:.3px;
    }

    /* Devices section */
    .devicesGrid{
      display:grid;
      grid-template-columns: repeat(6, 1fr);
      gap:12px;
      margin-top: 12px;
    }
    .deviceItem{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: 16px;
      padding:12px;
      display:flex;
      align-items:center;
      gap:10px;
      min-height: 54px;
    }
    .deviceIcon{
      width:34px; height:34px;
      border-radius: 12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      flex: 0 0 auto;
    }
    .deviceIcon i{ font-size:16px; opacity:.95; }
    .deviceLabel{
      font-weight:900;
      font-size:13px;
      line-height:1.15;
      color:rgba(238,241,255,.92);
      display:-webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow:hidden;
    }

    /* Footer */
    footer{
      margin-top:34px;
      border-top:1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(900px 500px at 20% 20%, rgba(13,53,185,.12), transparent 62%),
        radial-gradient(900px 500px at 80% 20%, rgba(95,58,230,.10), transparent 62%),
        rgba(10,12,24,.42);
      backdrop-filter: blur(10px);
    }
    .footer-wrap{
      max-width:1100px;
      margin:0 auto;
      padding:28px 24px 22px;
      display:grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap:18px;
    }
    .footer-brand{display:flex; flex-direction:column; gap:10px;}
    .footer-brand-top{display:flex; align-items:center; gap:12px;}
    .footer-brand-top img{
      width:44px; height:44px; object-fit:contain;
      filter: drop-shadow(0 16px 28px rgba(0,0,0,.45));
    }
    .footer-title{font-weight:700; letter-spacing:.2px; line-height:1.1;}
    .footer-tag{color:rgba(238,241,255,.70); font-size:13px; max-width: 48ch;}
    .footer-col h4{
      margin:0 0 10px;
      font-size:13px;
      letter-spacing:.18px;
      text-transform:uppercase;
      color:rgba(238,241,255,.78);
    }
    .footer-links{display:flex; flex-direction:column; gap:10px; font-size:14px;}
    .footer-links a{
      color:rgba(238,241,255,.82);
      padding:6px 8px;
      border-radius: 12px;
      width:fit-content;
      transition: background .18s ease, transform .18s ease;
    }
    .footer-links a:hover{background: rgba(255,255,255,.06); transform: translateY(-1px);}
    .social-row{display:flex; gap:18px; flex-wrap:wrap; margin-top:10px; align-items:center;}
    .social-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color: rgba(238,241,255,.78);
      font-size: 22px;
      line-height: 1;
      transition: transform .18s ease, color .18s ease;
    }
    .social-btn:hover{ transform: translateY(-2px); color: #fff; }
    .social-btn i{ opacity: 1; }
    .footer-bottom{
      max-width:1100px;
      margin:0 auto;
      padding:0 24px 18px;
      display:grid;
      grid-template-columns: 1fr auto 1fr;
      align-items:center;
      gap:10px;
      color:rgba(238,241,255,.62);
      font-size:13px;
    }
    .footer-bottom .footer-copy{ grid-column: 2; text-align: center; }
    .footer-bottom .social-row{ grid-column: 3; justify-self: end; margin-top: 0; }
    @media (max-width: 680px){
      .footer-bottom{ grid-template-columns: 1fr; justify-items: center; text-align: center; }
      .footer-bottom .footer-copy{ grid-column: 1; }
      .footer-bottom .social-row{ grid-column: 1; justify-self: center; }
    }

    /* Mobile */
    @media (max-width: 980px){
      .hero{ padding-top: 34px; }
      .grid{grid-template-columns: 1fr}
      .plans{grid-template-columns: 1fr}
      .navlinks{display:none}

      .menu{top:64px}
      .menu-grid{grid-template-columns: 1fr}
      .footer-wrap{grid-template-columns: 1fr; gap:16px}
      .searchGrid{grid-template-columns: repeat(2, 1fr)}
      .devicesGrid{grid-template-columns: repeat(2, 1fr)}

      .posterCard{width:120px;}
      .chanCard{width: 190px;}
    }
    @media (max-width: 480px){
      .logo-float{width: 240px;}
      .posterCard{width:112px;}
      .chanCard{width: 176px;}
    }

/* Language switcher (used by /nl /de /it /es /pl /gr /ar)
   The standalone button is hidden — its action is mirrored into the
   burger menu by the per-page inline script (see "Lang item in menu").
   !important wins over the inline <style> rules in some pages that
   redeclare .langBtn with display:inline-flex. */
.langBtn{
  width:44px;height:44px;display:none !important;align-items:center;justify-content:center;
  border-radius:12px;border:0;background:transparent;cursor:pointer;color:var(--text);
  font-size:17px;transition:background .18s ease;-webkit-tap-highlight-color:transparent;
}

/* RTL fix for the slider — force the slider wrap to LTR on Arabic
   pages so the native <input type="range"> thumb starts on the left
   and moves right as value increases, matching the coloured fill bar
   that's anchored at left:0. Without this, in RTL the thumb starts on
   the right while the fill grows from the left, leaving them visually
   detached on the slider track. */
[dir="rtl"] .range-wrap,
[dir="rtl"] .calc-range{
  direction: ltr;
}

/* RTL fix for the marquee bundles (series / movies / channels strips).
   In RTL flow, a child wider than its parent anchors at the parent's
   RIGHT edge, so translateX(-N%) shifts it OFF the left edge and the
   viewport ends up exposing empty space. Force LTR on BOTH the wrapper
   and the track so the strip behaves identically to the LTR pages. */
[dir="rtl"] .filmWrap,
[dir="rtl"] .filmTrack{
  direction: ltr;
}
.langBtn:hover{background:rgba(255,255,255,.06)}
.langBtn:active{background:rgba(255,255,255,.10)}
.nav{gap:6px}
.langModal{
  position:fixed;inset:0;z-index:300;display:none;align-items:center;justify-content:center;
  padding:18px;background:rgba(0,0,0,.65);backdrop-filter:blur(10px);
}
.langModal.open{display:flex}
.langPanel{
  width:min(420px,100%);max-height:80vh;border-radius:18px;
  background:rgba(10,12,24,.95);border:1px solid rgba(255,255,255,.10);
  box-shadow:0 22px 60px rgba(0,0,0,.6);position:relative;
  display:flex;flex-direction:column;overflow:hidden;
  transform:translateY(-12px);opacity:0;animation:lpIn .26s ease forwards;
}
@keyframes lpIn{to{transform:translateY(0);opacity:1}}
.langClose{
  position:absolute;top:12px;right:12px;width:36px;height:36px;border-radius:999px;
  border:0;background:rgba(255,255,255,.06);color:var(--text);cursor:pointer;
  font-size:18px;display:flex;align-items:center;justify-content:center;
}
.langClose:hover{background:rgba(255,255,255,.12)}
.langHead{
  padding:20px 20px 14px;display:flex;gap:14px;align-items:center;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.langHead>i{
  width:42px;height:42px;border-radius:12px;background:rgba(95,58,230,.18);
  color:#c8b9ff;display:flex;align-items:center;justify-content:center;font-size:18px;
}
.langTitle{font-weight:700;font-size:16px;letter-spacing:-.2px}
.langMeta{color:rgba(238,241,255,.6);font-size:12.5px;font-weight:500}
.langList{
  display:flex;flex-direction:column;padding:8px;overflow-y:auto;
  max-height:280px;scrollbar-width:thin;
  scrollbar-color:rgba(120,150,230,.4) transparent;
}
.langList::-webkit-scrollbar{width:6px}
.langList::-webkit-scrollbar-thumb{background:rgba(120,150,230,.4);border-radius:999px}
.langItem{
  display:flex;align-items:center;gap:12px;padding:10px 12px;border-radius:12px;
  text-decoration:none;color:var(--text);font-weight:600;font-size:14.5px;
  transition:background .15s ease;
}
.langItem:hover{background:rgba(255,255,255,.06)}
.langItem.active{background:rgba(95,58,230,.18);color:#fff}
.langItem img{
  width:30px;height:22px;object-fit:cover;border-radius:4px;
  box-shadow:0 2px 5px rgba(0,0,0,.4);flex:0 0 30px;
}

/* Inline keyword styling */
a.kw,
a.kw:link,
a.kw:visited,
a.kw:hover,
a.kw:focus,
a.kw:active{
  color: inherit;
  text-decoration: none;
  background: transparent;
  cursor: inherit;
  font: inherit;
  border: 0;
  padding: 0;
  margin: 0;
}

/* ===== FAQ SECTION ===== */
#faq{
  padding-inline:16px;
}

/* ===== FAQ accordion ===== */
.faqWrap{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:18px;

  max-width:900px;
  width:100%;

  /* LEFT-ALIGNED UNDER TITLE */
  margin-left:0;
}

/* Channels-card style: clean tint, soft hover glow, no harsh border */
.faqItem{
  position: relative;
  border: 0;
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.faqItem::after{
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--grad);
  opacity: 0;
  filter: blur(20px);
  transition: opacity .18s ease;
  pointer-events: none;
  z-index: -1;
}

@media (hover:hover){
  .faqItem:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.06);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
  }
  .faqItem:hover::after{ opacity: .16; }
}

/* Open state — slight tint shift, glow stays */
.faqItem[open]{
  background: rgba(255,255,255,.06);
}
.faqItem[open]::after{ opacity: .18; }

/* ===== Question ===== */
.faqItem summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-weight:800;
  font-size:1rem;
  color: rgba(238,241,255,.92);
  -webkit-tap-highlight-color: transparent;
}

.faqItem summary::-webkit-details-marker{
  display:none;
}

/* Chevron / toggle icon — soft brand color, not heavy */
.faqItem summary i{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(95,58,230,.18);
  color: #c8b9ff;
  font-size: .75rem;
  opacity: .95;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faqItem summary:hover i{
  background: rgba(95,58,230,.28);
  color: #fff;
}
.faqItem[open] summary i{
  transform: rotate(180deg);
  background: rgba(95,58,230,.28);
  color: #fff;
}

/* ===== Answer ===== */
.faqAnswer{
  padding:0 18px 18px;
  color: rgba(238,241,255,.75);
  font-weight:600;
  line-height:1.6;
  font-size:.95rem;
  animation: faqFade .2s ease;
}


/* Animation */
@keyframes faqFade{
  from{
    opacity:0;
    transform: translateY(-4px);
  }
  to{
    opacity:1;
    transform:none;
  }
}

/* ===== Desktop ===== */
@media (min-width:768px){
  .faqItem summary{
    padding:18px 22px;
    font-size:1.05rem;
  }

  .faqAnswer{
    padding:0 22px 22px;
    font-size:1rem;
  }
}

/* ===== Small phones ===== */
@media (max-width:420px){
  .faqItem summary{
    padding:14px;
    font-size:.95rem;
  }

  .faqAnswer{
    padding:0 14px 14px;
    font-size:.9rem;
  }
}
  :root{
    --brand-blue:#0d35b9;
    --brand-pink:#5f3ae6;
    --tap:#40b0fa;
  }

  #availabilityMap{
    max-width: 1100px;
    margin: 0 auto;
    padding: 22px 24px 6px;
  }
  .availabilityKey{
    display:flex; align-items:flex-end; justify-content:space-between;
    gap:12px; flex-wrap:wrap; margin-bottom:12px;
  }
  .keyTitle{ font-weight:700; letter-spacing:-.2px; color: rgba(238,241,255,.92); }
  .keyRow{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
  .keyItem{
    display:inline-flex; align-items:center; gap:8px;
    font-weight:900; font-size:12px; color: rgba(238,241,255,.80);
    border:1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    padding:6px 10px; border-radius:999px;
  }
  .keySwatch{
    width:12px; height:12px; border-radius:999px;
    border:1px solid rgba(255,255,255,.22);
  }
  .keySwatch.s3{ background: var(--brand-blue); }
  .keySwatch.s2{ background: var(--brand-pink); }
  .keySwatch.s1{
    background: linear-gradient(90deg, rgba(95,58,230,.55), rgba(16,103,161,.55));
  }

  .mapStageClean{
    position:relative;
    min-height: 520px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  .mapGlowClean{ display: none; }
  .svgHostClean{
    position:relative;
    width:100%;
    height: 520px;
    padding: 12px;
  }
  .svgHostClean svg{ width:100%; height:100%; display:block; }



  /* In-scope */
  .svgHostClean svg [id].inScope{ opacity: .95; }

  /* Strong = BLUE */
  .svgHostClean svg [id].s3{
    fill: rgba(13,53,185,.78);
    stroke: rgba(13,53,185,1);
    filter: drop-shadow(0 18px 34px rgba(13,53,185,.18));
  }

  /* Medium = PINK */
  .svgHostClean svg [id].s2{
    fill: rgba(95,58,230,.62);
    stroke: rgba(95,58,230,1);
    filter: drop-shadow(0 18px 34px rgba(95,58,230,.14));
  }

  /* Emerging = LIGHT BLUE→PINK vibe */
  .svgHostClean svg [id].s1{
    fill: #1067a1; /* neutral tint base */
    stroke: #1067a1;
    filter: drop-shadow(0 14px 28px rgba(16, 103, 161, 0.14));
  }

  /* Hover: subtle lift + tap accent stroke */
  .svgHostClean svg [id].inScope:hover{
    transform: translateY(-1px) scale(1.012);
    stroke: var(--tap);
    stroke-width: 1.1;
    filter: drop-shadow(0 20px 38px rgba(0,0,0,.35));
  }

  /* Smooth breathing only on STRONG (blue) */
  @keyframes breatheBlue {
    0%   { filter: drop-shadow(0 0 0 rgba(13,53,185,0)); }
    50%  { filter: drop-shadow(0 0 26px rgba(13,53,185,.22)); }
    100% { filter: drop-shadow(0 0 0 rgba(13,53,185,0)); }
  }
  .svgHostClean svg [id].s3.inScope{
    animation: breatheBlue 1.35s ease-in-out infinite;
  }

  /* Tooltip (minimal) */
  .mapTipClean{
    position:absolute;
    min-width: 180px;
    max-width: 240px;
    pointer-events:none;
    opacity:0;
    transform: translateY(8px);
    transition: opacity .12s ease, transform .12s ease;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(10,12,24,.92);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 10px 12px;
    box-shadow: 0 16px 55px rgba(0,0,0,.55);
    z-index: 3;
  }
  .mapTipClean.show{ opacity:1; transform: translateY(0); }
  .tTitle{ font-weight:700; letter-spacing:-.2px; margin-bottom:4px; }
  .tMeta{ color: rgba(238,241,255,.72); font-weight:900; font-size:12px; }

  @media (max-width: 980px){
    .svgHostClean{ height: 380px; }
    .mapStageClean{ min-height: 380px; }
    #availabilityMap{ padding-inline: 16px; }
  }
/* =========================
   TREX DNS SETUP (split section)
========================= */
.split{
  padding: 34px 0;
}

.split-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;

  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  overflow:hidden;
}

.split-art{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  min-height: 260px;
}

.split-art img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  filter: brightness(0.95) contrast(1.06);
}

/* subtle glow overlay */
.split-art::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(600px 300px at 30% 30%, rgba(13,53,185,.28), transparent 55%),
              radial-gradient(600px 300px at 70% 70%, rgba(95,58,230,.22), transparent 55%);
  pointer-events:none;
}

.split-text{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding: 4px 6px;
}

.split-title{
  margin:0;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -.4px;
}

.split-text .sub{
  margin:0;
  max-width: 62ch;
}

.split-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 980px){
  .split-wrap{
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .split-art{
    min-height: 220px;
  }
}

/* =========================
   Reseller Gain Calculator (slider edition)
========================= */
.calc{
  margin: 18px 0 6px;
  padding: 14px 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.calc::before{ content: none; }
.calc > *{ position: relative; z-index: 1; }

.calc-row{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.calc-head label{
  font-weight: 700;
  font-size: 14px;
  color: rgba(238,241,255,.88);
  display: flex;
  align-items: center;
  gap: 8px;
}
.calc-head label i{ color: var(--tap, #40b0fa); opacity: .95; }
.calc-head .auto-tag{
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(238,241,255,.55);
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  margin-left: 6px;
}
.calc-val{
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(90deg, #5f3ae6, #40b0fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.3px;
  white-space: nowrap;
}

/* Auto pack pills (non-interactive) */
.pack-pills{
  position: relative;
  display: flex;
  gap: 0;
  padding: 5px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  user-select: none;
}
.pack-glow{
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc((100% - 10px) / 3);
  border-radius: 999px;
  background: var(--grad);
  background-size: 220% 100%;
  box-shadow: 0 8px 18px rgba(81,112,255,.28);
  transition: transform .42s cubic-bezier(.5,.05,.2,1), background-position .8s ease;
  z-index: 0;
  will-change: transform;
}
.pack-pill{
  flex: 1;
  text-align: center;
  padding: 9px 14px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(238,241,255,.65);
  border-radius: 999px;
  position: relative;
  z-index: 1;
  transition: color .35s ease;
  cursor: default;
}
.pack-pill.active{ color: #fff; }

/* Smooth slider with overlay-fill (transitionable) */
.range-wrap{
  position: relative;
  height: 22px;
  display: flex;
  align-items: center;
}
.range-track{
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
  background: rgba(255,255,255,.10);
  border-radius: 999px;
  pointer-events: none;
}
.range-fill{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
  width: 0;
  background: linear-gradient(90deg, #5f3ae6, #40b0fa);
  border-radius: 999px;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(64,176,250,.35);
}
.calc-range{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 22px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.calc-range:focus{ outline: none; }
.calc-range::-webkit-slider-runnable-track{ background: transparent; height: 22px; border: 0; }
.calc-range::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  margin-top: 0;
  border-radius: 50%;
  background: #fff;
  border: 0;
  box-shadow: 0 6px 18px rgba(64,176,250,.55), 0 0 0 4px rgba(64,176,250,.22);
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.calc-range::-webkit-slider-thumb:hover{ transform: scale(1.12); box-shadow: 0 8px 22px rgba(64,176,250,.7), 0 0 0 6px rgba(64,176,250,.28); }
.calc-range:active::-webkit-slider-thumb{ transform: scale(1.18); }
.calc-range::-moz-range-track{ background: transparent; height: 22px; border: 0; }
.calc-range::-moz-range-thumb{
  width: 22px; height: 22px; border: 0; border-radius: 50%; background: #fff;
  box-shadow: 0 6px 18px rgba(64,176,250,.55), 0 0 0 4px rgba(64,176,250,.22);
  cursor: pointer;
}

.calc-marks{
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: rgba(238,241,255,.55);
  letter-spacing: .4px;
  margin-top: -2px;
}

.calc-meta{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.12);
  font-size: 13.5px;
}
.calc-meta span b{ font-weight: 800; color: var(--text); margin-left: 4px; }
.calc-meta span{ color: rgba(238,241,255,.70); font-weight: 600; }

.calc-gain{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  flex-wrap: wrap;
  transition: transform .25s ease;
}
.calc-gain.bump{ animation: gainBump .35s ease; }
@keyframes gainBump{
  0%{ transform: scale(1); }
  45%{ transform: scale(1.03); }
  100%{ transform: scale(1); }
}
.calc-gain .gain-label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(238,241,255,.78);
}
.calc-gain .gain-amount{
  font-size: clamp(30px, 5.2vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  background: linear-gradient(90deg, #25D366, #40b0fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.calc-gain.loss .gain-amount{ background: linear-gradient(90deg, #ff7474, #ffb86b); -webkit-background-clip: text; background-clip: text; color: transparent; }

.calc-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   Supported Devices grid
========================= */
.deviceGrid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 16px;
}
@media (max-width: 980px){ .deviceGrid{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px){ .deviceGrid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 380px){ .deviceGrid{ grid-template-columns: repeat(2, 1fr); } }

.deviceGrid{ overflow: visible; }
.deviceCard{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 6px;
  text-align: center;
  background: transparent;
  border: 0;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease;
  overflow: visible;
  position: relative;
}
.deviceCard:hover{ transform: translateY(-2px); }

.deviceCard .devImg{
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 0;
  border-radius: 14px;
  padding: 8px;
  box-shadow: none;
  transition: transform .18s ease;
  overflow: visible;
  position: relative;
}
.deviceCard:hover .devImg{
  transform: translateY(-1px);
  box-shadow: none;
}
.deviceCard .devImg img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.deviceCard .devName{
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.1px;
  line-height: 1.2;
}

.deviceCta{ text-align: center; margin-top: 18px; }

/* =========================
   Apps download stage (countdown)
========================= */
.dlStage{
  margin: 12px 0 6px;
  padding: 18px 8px;
  position: relative;
  text-align: center;
}
.dlState{ display: flex; flex-direction: column; align-items: center; gap: 14px; }
.dlState[hidden]{ display: none; }

.dlIcon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  line-height: 1;
  background: linear-gradient(90deg, #25D366, #40b0fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 12px 22px rgba(64,176,250,.30));
  animation: dlIconBob 2.6s ease-in-out infinite;
}
@keyframes dlIconBob{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

.dlTitle{
  margin: 0;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: -.4px;
}
.dlText{
  margin: 0;
  color: rgba(238,241,255,.72);
  font-size: 14px;
  max-width: 480px;
}
.dlBtn{
  margin-top: 4px;
  padding: 14px 26px !important;
  font-size: 15px;
  font-weight: 800;
}

.dlLabel{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(238,241,255,.78);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dlLabel.success{ color: #25D366; }
.dlDots{ display: inline-flex; gap: 2px; margin-left: 2px; }
.dlDots span{
  animation: dlDot 1.2s ease-in-out infinite;
  opacity: .35;
}
.dlDots span:nth-child(2){ animation-delay: .15s; }
.dlDots span:nth-child(3){ animation-delay: .30s; }
@keyframes dlDot{
  0%,100%{ opacity: .35; transform: translateY(0); }
  50%{ opacity: 1; transform: translateY(-2px); }
}

.dlCount{
  font-size: clamp(56px, 9vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  background: linear-gradient(90deg, #25D366, #40b0fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform .25s ease;
}
.dlCount.bump{ animation: dlBump .35s ease; }
@keyframes dlBump{
  0%{ transform: scale(1); }
  45%{ transform: scale(1.10); }
  100%{ transform: scale(1); }
}

.dlBar{
  width: min(420px, 100%);
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow: hidden;
}
.dlBarFill{
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #25D366, #40b0fa);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(64,176,250,.45);
}
.dlBar.run .dlBarFill{
  width: 100%;
  transition: width 10s linear;
}

.dlCheck{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(37,211,102,.20), rgba(64,176,250,.18));
  border: 1px solid rgba(37,211,102,.40);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: #25D366;
  box-shadow: 0 14px 30px rgba(37,211,102,.30);
  animation: dlPop .45s cubic-bezier(.34,1.56,.64,1);
}
@keyframes dlPop{
  0%{ transform: scale(.4); opacity: 0; }
  100%{ transform: scale(1); opacity: 1; }
}

.dlCancel, .dlAgain{
  margin-top: 4px;
  background: rgba(255,255,255,.05) !important;
  border: 1px solid var(--border) !important;
  color: rgba(238,241,255,.85) !important;
  padding: 9px 18px !important;
  border-radius: 999px !important;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, color .18s ease;
}
.dlCancel:hover, .dlAgain:hover{
  background: rgba(255,255,255,.10) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* =========================
   Floating WhatsApp Join Button
========================= */
.waFloat{
  position: fixed;
  left: 20px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(140deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(37,211,102,.45), 0 6px 14px rgba(0,0,0,.35);
  z-index: 200;
  animation: waFloatBob 2.6s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}
.waFloat i{ position: relative; z-index: 2; }
.waFloat::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(37,211,102,.6);
  animation: waRing 2.2s ease-out infinite;
  z-index: 1;
  pointer-events: none;
}
.waFloat::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(37,211,102,.45);
  animation: waRing 2.2s ease-out infinite;
  animation-delay: 1.1s;
  z-index: 1;
  pointer-events: none;
}
.waFloat:hover{
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 20px 38px rgba(37,211,102,.6), 0 8px 18px rgba(0,0,0,.4);
}
.waFloat:active{ transform: translateY(0) scale(.96); }
@keyframes waFloatBob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}
@keyframes waRing{
  0%{ transform: scale(1); opacity: .55; }
  100%{ transform: scale(1.7); opacity: 0; }
}
@media (max-width: 520px){
  .waFloat{ left: 14px; bottom: 18px; width: 52px; height: 52px; font-size: 24px; }
}
@media (prefers-reduced-motion: reduce){
  .waFloat, .waFloat::before, .waFloat::after{ animation: none; }
}

/* =========================
   Slideshow / Gallery
========================= */
.slideshow{
  margin: 18px 0 6px;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}
.ssStage{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: transparent;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  border-radius: 0;
}
.ssTrack{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.ssSlide{
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ssSlide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  display: block;
  pointer-events: none;
  border-radius: 18px;
}
.ssEmpty{
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: rgba(238,241,255,.55);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 24px;
  width: 100%;
  height: 100%;
}
.ssEmpty i{ font-size: 38px; opacity: .55; }
.ssBtn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  border: 1px solid var(--border);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .2s ease, transform .15s ease, opacity .2s ease;
  z-index: 3;
}
.ssBtn:hover{ background: rgba(0,0,0,.85); transform: translateY(-50%) scale(1.08); }
.ssBtn:disabled{ opacity: .35; cursor: not-allowed; }
.ssPrev{ left: 12px; }
.ssNext{ right: 12px; }
.ssCounter{
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: .3px;
  z-index: 3;
}
.ssDots{
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 14px 12px 10px;
  flex-wrap: wrap;
}
.ssDot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: width .25s ease, background .25s ease, border-radius .25s ease;
}
.ssDot.active{
  width: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5f3ae6, #40b0fa);
}
.ssCap{
  padding: 6px 18px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(238,241,255,.78);
  text-align: center;
  min-height: 22px;
}

/* Elaborate (activationpanel) — thumbs + controls + lightbox */
.ssThumbs{
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.25) transparent;
}
.ssThumbs::-webkit-scrollbar{ height: 6px; }
.ssThumbs::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.25); border-radius: 3px; }
.ssThumb{
  flex: 0 0 96px;
  height: 64px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  background: rgba(0,0,0,.5);
  overflow: hidden;
  padding: 0;
  transition: border-color .2s ease, transform .15s ease;
  position: relative;
}
.ssThumb img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.ssThumb.active{ border-color: #40b0fa; transform: translateY(-2px); }
.ssThumb.empty{
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(238,241,255,.45);
  font-size: 18px;
}
.ssControls{
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 12px 14px;
}
.ssCtrlBtn{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: rgba(238,241,255,.92);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s ease, color .2s ease;
}
.ssCtrlBtn:hover{ background: rgba(255,255,255,.12); color: #fff; }
.ssCtrlBtn.on{
  background: linear-gradient(90deg, #5f3ae6, #40b0fa);
  color: #fff;
  border-color: transparent;
}
.ssLight{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.ssLight.open{ display: flex; }
.ssLight img{ max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.6); border-radius: 8px; }
.ssLightClose{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.ssLightClose:hover{ background: rgba(255,255,255,.18); }
.ssLightNav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ssLightNav:hover{ background: rgba(255,255,255,.18); }
.ssLightPrev{ left: 24px; }
.ssLightNext{ right: 24px; }
@media (max-width: 520px){
  .ssBtn{ width: 38px; height: 38px; font-size: 14px; }
  .ssThumb{ flex: 0 0 78px; height: 52px; }
}

/* =========================================================
   Gradient borders — outline-only.
   Pseudo-element + CSS mask paints ONLY the 1px ring, leaves
   the card interior 100% untouched (no tint, no bleed).
   ========================================================= */
:root{
  --gborder: linear-gradient(120deg, #5f3ae6 0%, #0d35b9 55%, #1067a1 100%);
  --border: transparent;
}

/* Anchor for the ::after ring */
.plan,
.feature,
.tabs,
.helpCard,
.dnsCard,
.ctaCard,
.card,
.deviceItem,
.stepBox,
.searchResults,
.searchInput,
.faqContact,
.pNeed,
.tutSection,
.appPill,
.menu-panel,
.movieCard,
.gcard,
.mv,
.cCta,
.cSearch,
.faqSearchInput{
  position: relative;
  border: 0 !important;
}

/* The gradient ring — paints only the border, interior untouched */
.plan::after,
.tabs::after,
.helpCard::after,
.dnsCard::after,
.ctaCard::after,
.card::after,
.deviceItem::after,
.stepBox::after,
.searchResults::after,
.searchInput::after,
.faqContact::after,
.pNeed::after,
.tutSection::after,
.appPill::after,
.menu-panel::after,
.movieCard::after,
.gcard::after,
.mv::after,
.cCta::after,
.cSearch::after,
.faqSearchInput::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gborder);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

/* .feature already has ::after for its hover glow — use ::before instead.
   Same for any element whose ::after is taken. */
.feature{ position: relative; border: 0 !important; }
.feature::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gborder);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

/* Header / footer — gradient hairline divider instead of gray line */
header{ border-bottom: 0 !important; position: relative; }
header::after{
  content:""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gborder); opacity: .55; pointer-events: none;
}
footer{ border-top: 0 !important; position: relative; }
footer::before{
  content:""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: var(--gborder); opacity: .55; pointer-events: none;
}

/* Slideshow — keep free of box */
.slideshow{ border: 0 !important; background: transparent !important; }
.ssStage{ border: 0 !important; }

/* Calc internal dividers — subtle brand-tinted, not gray */
.calc-meta{ border-top: 0 !important; padding-top: 0; }
.calc-gain{ border-top: 0 !important; padding-top: 0; }

/* Drop gray on menu/dropdown items and similar dividers */
.menu-item, .menu-dropdown, .tab{ border-color: transparent !important; }

/* =========================================================
   Unified search box — pill with magnifying-glass icon
   Apply on movies / channels / faq / countries / etc.
   ========================================================= */
.searchPill{
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.searchPill > i,
.searchPill::before{
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: rgba(238,241,255,.55);
  font-size: 15px;
  pointer-events: none;
  z-index: 2;
}
.searchPill input,
.searchPill > input[type="text"],
.searchPill > input[type="search"]{
  width: 100%;
  padding: 14px 18px 14px 48px;
  border-radius: 999px;
  border: 0 !important;
  background: rgba(10,12,24,.55) !important;
  color: var(--text);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  outline: none;
  transition: background .18s ease, box-shadow .18s ease;
}
.searchPill input::placeholder{
  color: rgba(238,241,255,.45);
  font-weight: 500;
}
.searchPill input:focus{
  background: rgba(10,12,24,.85) !important;
  box-shadow: 0 0 0 4px rgba(64,176,250,.18);
}

/* Promote any existing search-style input to the pill look automatically */
#globalSearch,
#groupSearch,
.cSearch,
.faqSearchInput{
  width: 100%;
  max-width: 560px;
  padding: 14px 18px 14px 48px;
  border-radius: 999px;
  border: 0 !important;
  background: rgba(10,12,24,.55) !important;
  color: var(--text);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  outline: none;
  transition: background .18s ease, box-shadow .18s ease;
}
#globalSearch:focus,
#groupSearch:focus,
.cSearch:focus,
.faqSearchInput:focus{
  background: rgba(10,12,24,.85) !important;
  box-shadow: 0 0 0 4px rgba(64,176,250,.18);
}

/* =========================================================
   Discounted-price visual for subscription packages.
   Drop a .priceWas (old price, line-through) above .price,
   plus a .priceSave badge under it.
   ========================================================= */
.priceWas{
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: rgba(238,241,255,.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255,116,116,.7);
  margin: 6px 0 -2px;
}
.priceSave{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37,211,102,.18);
  color: #a3e3bf;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .3px;
}

/* =========================================================
   Typography weight pass — simple, consistent.
   400 = body, 500 = UI labels/sub, 700 = headings & strong.
   900 reserved for counter result numbers only.
   ========================================================= */
body, p, li, .sub, .section-sub, .hero-sub,
.faqAnswer, .note, .footer-tag{
  font-weight: 400;
}
.pill, .updTag, .badge,
.menu-item .left, details.menu-dropdown > summary .left,
.menu-subitem, .navlinks a, .cmLabel, .cmDetail .k,
.calc-marks, .calc-meta span, .cmStat .k,
.searchInput, .cSearch, .faqSearchInput, #globalSearch, #groupSearch,
.searchTitle, .searchMeta, .scoreVerdict, .cmVerdict,
.appPlatforms, .priceDealLabel{
  font-weight: 500;
}
h1, h2, h3, h4, h5, h6,
.title, .section-title, .headline, .hero-title, .stepTitle,
.btn, .btn.primary, .btn.tab, .chip, .fitPill, .cmReveal, .ssCtrlBtn,
.faqItem summary, .faqChip, .appName, .footer-title,
.plan .price, .price, .splittitle, .updTitle, .telegramCard h3,
.helpCard h3, .dnsCard h3, .ctaCard h3, .stepBox h4,
strong, b, .calc-val, .calc-head label, .cmChosen,
.priceWas, .pricePerMo, .cmStat .v, .cmDetail .v,
.tile h3, .appCard .btn, .deviceCard .devName{
  font-weight: 700;
}
/* Counter / result outputs — a touch heavier so they pop */
.gain-amount,
.cmScoreNum,
.priceNew,
.errorTitle,
.scoreNumber,
#resSpeed,
#cmPrice,
#resGain,
.cmStat .v.price{
  font-weight: 900;
}
/* Stable mono-ish digit feel on number readouts */
.gain-amount, .cmScoreNum, .priceNew, .priceWas,
.scoreNumber, #resSpeed, #cmPrice, #resGain,
.cmStat .v.price, .pricePerMo, .cmStat .v{
  font-variant-numeric: tabular-nums;
  letter-spacing: -.5px;
}