    :root{
      --bg:#000000;
      --card:rgba(255,255,255,.06);
      --border:rgba(255,255,255,.10);
      --text:#EEF1FF;
      --muted:rgba(238,241,255,.72);
      --shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
      --radius:18px;

      --grad: linear-gradient(90deg, #5170ff, #ff66c4, #ff66c4);
      --tap:#ff6448;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      color:var(--text);
      background:
        radial-gradient(900px 700px at 15% 10%, rgba(81,112,255,.24), transparent 60%),
        radial-gradient(900px 700px at 85% 15%, rgba(255,102,196,.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(255,102,196,.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:600;
      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(81,112,255,.14);
    }
    .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:950;
      letter-spacing:.2px;
    }
    .brand img{
      width:38px;height:38px;object-fit:contain;
      filter: drop-shadow(0 10px 20px rgba(255,102,196,.16));
    }

    .burger{
      width:46px; height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.06);
      cursor:pointer;
      user-select:none;
      -webkit-tap-highlight-color: transparent;
      transition: transform .18s ease, background .18s ease;
    }
    .burger:hover{transform: translateY(-1px); background: rgba(255,255,255,.09)}
    .burger:active{transform: translateY(0px) scale(.99)}
    .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;
      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;
    }

    .menu-actions{
      padding:0 14px 14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    /* HERO */
    .hero{
      padding:42px 0 14px;
      display:grid; gap:22px;
      grid-template-columns: 1.2fr .9fr;
      align-items:center;
    }
    h1{
      margin:14px 0 10px;
      font-size: clamp(34px, 4.2vw, 56px);
      line-height:1.05;
      letter-spacing:-1px;
    }
    .sub{
      margin:0;
      color:var(--muted);
      font-size: 17px;
      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: 950;
      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(81,112,255,.18),
        rgba(255,102,196,.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(81,112,255,.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:26px 0}
    .section-title{font-size:22px; margin:0 0 6px; letter-spacing:-.3px}
    .section-sub{margin:0 0 16px; color:var(--muted)}

    .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(-50%); }
    }

    .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%;
      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:950;
      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(255,102,196,.16), rgba(255,255,255,.03));
      box-shadow: 0 20px 60px rgba(255,102,196,.10);
    }
    .price{font-size:34px; margin:10px 0 4px; font-weight:950}
    .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%;
      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,.65);
      display:none;
      align-items:center;
      justify-content:center;
      padding:16px;
      z-index: 100;
    }
    .modal.open{display:flex}
    .modalbox{
      max-width: 920px;
      width: 100%;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(10,12,24,.92);
      border-radius: 20px;
      box-shadow: var(--shadow);
      overflow:hidden;
      display:grid;
      grid-template-columns: 320px 1fr;
    }
    .modalbox img{width:100%; height:100%; object-fit:cover; background: rgba(255,255,255,.06);}
    .modalcontent{padding:16px; display:flex; flex-direction:column; gap:10px;}
    .modalcontent h3{margin:0; font-size:20px; letter-spacing:-.2px}
    .modalcontent p{margin:0; color:var(--muted); font-weight:700}
    .modalactions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}

    /* 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:950;
      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(81,112,255,.22), rgba(255,102,196,.12));
      color: rgba(238,241,255,.92);
      font-weight:950;
      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(81,112,255,.12), transparent 62%),
        radial-gradient(900px 500px at 80% 20%, rgba(255,102,196,.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:950; 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:10px; flex-wrap:wrap; margin-top:6px;}
    .social-btn{
      width:42px; height:42px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      transition: transform .18s ease, background .18s ease;
    }
    .social-btn:hover{transform: translateY(-2px); background: rgba(255,255,255,.08)}
    .social-btn i{opacity:.95}
    .footer-bottom{
      max-width:1100px;
      margin:0 auto;
      padding:0 24px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      color:rgba(238,241,255,.62);
      font-size:13px;
    }

    /* Mobile */
    @media (max-width: 980px){
      .hero{grid-template-columns: 1fr; padding-top:34px;}
      .hero-art{order:-1; min-height: 240px;}
      .hero-art::before{width: 280px; height: 280px;}
      .logo-float{max-width: 86vw; width: 260px;}
      .grid{grid-template-columns: 1fr}
      .plans{grid-template-columns: 1fr}
      .modalbox{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;}
    }
   
/* ===== FAQ SECTION ===== */
#faq{
  padding-inline:16px;
}

/* ===== FAQ accordion ===== */
.faqWrap{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:18px;

  max-width:900px;
  width:100%;

  /* LEFT-ALIGNED UNDER TITLE */
  margin-left:0;
}

/* Card */
.faqItem{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius:16px;
  overflow:hidden;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

/* Hover (desktop only) */
@media (hover:hover){
  .faqItem:hover{
    border-color: rgba(255,255,255,.22);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    background: rgba(255,255,255,.07);
  }
}

/* ===== 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;
}

/* Icon */
.faqItem summary i{
  opacity:.85;
  font-size:.9rem;
  transition: transform .25s ease, opacity .25s ease;
}

.faqItem[open] summary i{
  transform: rotate(180deg);
  opacity:1;
}

/* ===== 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;
}

/* Open state */
.faqItem[open]{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.07),
    rgba(255,255,255,.04)
  );
}

/* 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:#5170ff;
    --brand-pink:#ff66c4;
    --tap:#ff6448;
  }

  #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:950; 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(81,112,255,.55), rgba(255,102,196,.55));
  }

  .mapStageClean{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    background:
      radial-gradient(900px 420px at 15% 10%, rgba(81,112,255,.16), transparent 60%),
      radial-gradient(900px 420px at 85% 15%, rgba(255,102,196,.12), transparent 60%),
      rgba(0,0,0,.22);
    min-height: 520px;
  }
  .mapGlowClean{
    position:absolute; inset:-2px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-pink), var(--brand-pink));
    filter: blur(30px);
    opacity: .14;
    pointer-events: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(81,112,255,.78);
    stroke: rgba(81,112,255,1);
    filter: drop-shadow(0 18px 34px rgba(81,112,255,.18));
  }

  /* Medium = PINK */
  .svgHostClean svg [id].s2{
    fill: rgba(255,102,196,.62);
    stroke: rgba(255,102,196,1);
    filter: drop-shadow(0 18px 34px rgba(255,102,196,.14));
  }

  /* Emerging = LIGHT BLUE→PINK vibe */
  .svgHostClean svg [id].s1{
    fill: #ff6448; /* neutral tint base */
    stroke: #ff6448;
    filter: drop-shadow(0 14px 28px rgba(223, 97, 80, 0.1));
  }

  /* 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(81,112,255,0)); }
    50%  { filter: drop-shadow(0 0 26px rgba(81,112,255,.22)); }
    100% { filter: drop-shadow(0 0 0 rgba(81,112,255,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:950; 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; }
  }