/* roulang page: index */
:root{
      --bg:#08111f;
      --bg2:#0d1728;
      --panel:rgba(15,23,42,.78);
      --panel2:rgba(17,24,39,.92);
      --line:rgba(148,163,184,.18);
      --text:#e5eefb;
      --muted:#9fb1ca;
      --muted2:#7d8ea9;
      --primary:#27d9ff;
      --primary2:#8b5cf6;
      --accent:#ff8a2b;
      --success:#3cf29c;
      --danger:#ff5c7a;
      --radius:18px;
      --radius-lg:24px;
      --shadow:0 18px 60px rgba(0,0,0,.32);
      --shadow-soft:0 10px 30px rgba(0,0,0,.18);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
      background:
        radial-gradient(circle at 18% 18%, rgba(139,92,246,.18), transparent 28%),
        radial-gradient(circle at 82% 10%, rgba(39,217,255,.16), transparent 22%),
        radial-gradient(circle at 72% 78%, rgba(255,138,43,.14), transparent 25%),
        linear-gradient(180deg, #060b14 0%, #09101d 42%, #0c1322 100%);
      color:var(--text);
      line-height:1.75;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size:32px 32px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.6), transparent 80%);
      opacity:.5;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    ::selection{background:rgba(39,217,255,.28);color:#fff}
    .container{width:min(1180px, calc(100vw - 32px)); margin-inline:auto;}
    .panel{
      background:linear-gradient(180deg, rgba(17,24,39,.84), rgba(10,15,27,.88));
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .panel-strong{
      background:linear-gradient(180deg, rgba(12,18,31,.92), rgba(9,14,25,.96));
      border:1px solid rgba(148,163,184,.14);
      box-shadow:var(--shadow);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }
    .glow-border{
      position:relative;
      overflow:hidden;
    }
    .glow-border:after{
      content:"";
      position:absolute;
      inset:0;
      padding:1px;
      border-radius:inherit;
      background:linear-gradient(135deg, rgba(39,217,255,.55), rgba(139,92,246,.35), rgba(255,138,43,.3));
      -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite:xor;
      mask-composite:exclude;
      pointer-events:none;
    }
    .section-title{
      font-size:clamp(1.25rem, 1.02rem + 1vw, 2rem);
      line-height:1.2;
      letter-spacing:.02em;
    }
    .section-lead{
      color:var(--muted);
      max-width:70ch;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.04);
      color:#d6e2f4;
      border-radius:999px;
      padding:.35rem .75rem;
      font-size:.78rem;
      white-space:nowrap;
    }
    .badge-hot{
      border-color:rgba(39,217,255,.22);
      background:linear-gradient(90deg, rgba(39,217,255,.14), rgba(139,92,246,.14));
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.5rem;
      min-height:48px;
      padding:.85rem 1.1rem;
      border-radius:999px;
      font-weight:700;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
      cursor:pointer;
      border:1px solid transparent;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn:active{transform:translateY(0)}
    .btn:focus-visible, input:focus-visible, button:focus-visible, summary:focus-visible{
      outline:2px solid rgba(39,217,255,.85);
      outline-offset:2px;
    }
    .btn-primary{
      color:#04111b;
      background:linear-gradient(135deg, #32e6ff, #8b5cf6 65%, #ff8a2b);
      box-shadow:0 10px 26px rgba(39,217,255,.18);
    }
    .btn-primary:hover{
      box-shadow:0 16px 30px rgba(39,217,255,.22), 0 0 0 1px rgba(39,217,255,.12) inset;
    }
    .btn-secondary{
      color:#dbe8f7;
      background:rgba(255,255,255,.04);
      border-color:rgba(255,255,255,.11);
    }
    .btn-secondary:hover{
      background:rgba(255,255,255,.07);
      border-color:rgba(39,217,255,.25);
    }
    .nav-chip{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:.45rem .75rem;
      border-radius:999px;
      border:1px solid rgba(148,163,184,.14);
      background:rgba(255,255,255,.04);
      color:#dce8f9;
      transition:all .2s ease;
    }
    .nav-chip:hover{background:rgba(255,255,255,.08); border-color:rgba(39,217,255,.24)}
    .nav-chip.active{
      background:linear-gradient(135deg, rgba(39,217,255,.18), rgba(139,92,246,.14));
      border-color:rgba(39,217,255,.32);
      color:#fff;
      box-shadow:0 0 0 1px rgba(39,217,255,.07) inset;
    }
    .search-shell{
      display:flex;
      align-items:center;
      gap:.5rem;
      width:min(100%, 380px);
      padding:.45rem .55rem .45rem .95rem;
      border-radius:999px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(148,163,184,.16);
    }
    .search-shell input{
      width:100%;
      min-width:0;
      border:none;
      background:transparent;
      color:var(--text);
      outline:none;
    }
    .search-shell input::placeholder{color:#7f93b1}
    .hero-wrap{
      position:relative;
      overflow:hidden;
      border-radius:28px;
    }
    .hero-wrap:before{
      content:"";
      position:absolute;
      inset:-1px;
      background:
        radial-gradient(circle at 20% 15%, rgba(39,217,255,.18), transparent 24%),
        radial-gradient(circle at 76% 18%, rgba(139,92,246,.22), transparent 26%),
        radial-gradient(circle at 74% 84%, rgba(255,138,43,.16), transparent 20%),
        linear-gradient(135deg, rgba(7,11,19,.92), rgba(13,19,34,.88));
      z-index:0;
    }
    .hero-wrap:after{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(135deg, rgba(255,255,255,.04), transparent 32%),
        radial-gradient(circle at top right, rgba(39,217,255,.1), transparent 30%);
      pointer-events:none;
      z-index:1;
    }
    .hero-grid{position:relative; z-index:2}
    .stat{
      border:1px solid rgba(148,163,184,.14);
      background:rgba(255,255,255,.04);
      border-radius:18px;
      padding:1rem;
    }
    .progress-line{
      position:relative;
      height:10px;
      border-radius:999px;
      background:rgba(148,163,184,.14);
      overflow:hidden;
    }
    .progress-line > span{
      display:block;
      height:100%;
      width:72%;
      border-radius:inherit;
      background:linear-gradient(90deg, #27d9ff, #8b5cf6 60%, #ff8a2b);
      box-shadow:0 0 20px rgba(39,217,255,.22);
    }
    .card{
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(17,24,39,.82), rgba(10,15,27,.9));
      border:1px solid rgba(148,163,184,.14);
      box-shadow:var(--shadow-soft);
      transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }
    .card:hover{
      transform:translateY(-3px);
      border-color:rgba(39,217,255,.22);
      box-shadow:0 18px 36px rgba(0,0,0,.28);
    }
    .mini-line{
      height:8px;
      border-radius:999px;
      background:rgba(148,163,184,.12);
      overflow:hidden;
    }
    .mini-line span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, rgba(39,217,255,.95), rgba(139,92,246,.95));
    }
    .timeline{
      position:relative;
      padding-left:1rem;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:.28rem;
      top:.2rem;
      bottom:.2rem;
      width:1px;
      background:linear-gradient(180deg, rgba(39,217,255,.45), rgba(139,92,246,.2));
    }
    .timeline-step{
      position:relative;
      padding-left:1.2rem;
    }
    .timeline-step:before{
      content:"";
      position:absolute;
      left:-.02rem;
      top:.45rem;
      width:.6rem;
      height:.6rem;
      border-radius:999px;
      background:linear-gradient(135deg, #27d9ff, #8b5cf6);
      box-shadow:0 0 0 4px rgba(39,217,255,.12);
    }
    details.faq-item{
      border-radius:18px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(148,163,184,.14);
      overflow:hidden;
    }
    details.faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:1rem 1.1rem;
      font-weight:700;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    details.faq-item .answer{
      padding:0 1.1rem 1rem;
      color:var(--muted);
    }
    .foot-link{
      color:#c7d5e8;
      transition:color .2s ease, opacity .2s ease;
    }
    .foot-link:hover{color:#fff}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      border-radius:999px;
      padding:.35rem .7rem;
      font-size:.76rem;
      border:1px solid rgba(148,163,184,.16);
      background:rgba(255,255,255,.03);
      color:#d2def0;
    }
    .news-item{
      padding:1rem 0;
      border-bottom:1px solid rgba(148,163,184,.12);
    }
    .news-item:last-child{border-bottom:none}
    .news-item a{
      display:block;
      font-weight:700;
      line-height:1.45;
      transition:color .2s ease;
    }
    .news-item a:hover{color:#7be7ff}
    .input-field{
      width:100%;
      border-radius:14px;
      padding:.95rem 1rem;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(148,163,184,.14);
      color:var(--text);
      outline:none;
      transition:border-color .2s ease, background .2s ease;
    }
    .input-field::placeholder{color:#70839f}
    .input-field:focus{
      border-color:rgba(39,217,255,.34);
      background:rgba(255,255,255,.055);
    }
    .soft-glow{
      position:absolute;
      border-radius:999px;
      filter:blur(36px);
      opacity:.7;
      pointer-events:none;
    }
    .scrollbar-hide::-webkit-scrollbar{display:none}
    .scrollbar-hide{scrollbar-width:none; -ms-overflow-style:none}
    @media (max-width: 1024px){
      .container{width:min(1180px, calc(100vw - 24px));}
    }
    @media (max-width: 768px){
      .search-shell{width:100%}
    }

/* roulang page: category1 */
:root {
      --bg: #070a12;
      --bg-soft: #0d1220;
      --panel: rgba(16, 21, 36, .78);
      --panel-strong: rgba(20, 27, 47, .94);
      --text: #f8fafc;
      --muted: #94a3b8;
      --subtle: #64748b;
      --line: rgba(255, 255, 255, .12);
      --line-strong: rgba(125, 211, 252, .32);
      --cyan: #22d3ee;
      --violet: #8b5cf6;
      --orange: #fb923c;
      --rose: #fb7185;
      --green: #34d399;
      --radius: 22px;
      --radius-sm: 14px;
      --shadow: 0 24px 70px rgba(0, 0, 0, .42);
      --shadow-soft: 0 14px 36px rgba(0, 0, 0, .28);
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(34, 211, 238, .18), transparent 34%),
        radial-gradient(circle at 82% 14%, rgba(139, 92, 246, .2), transparent 32%),
        linear-gradient(180deg, #070a12 0%, #0a0f1d 46%, #070a12 100%);
      font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.25), transparent);
      pointer-events: none;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      background-image:
        radial-gradient(circle, rgba(255,255,255,.13) 1px, transparent 1.5px);
      background-size: 38px 38px;
      opacity: .14;
      pointer-events: none;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(7, 10, 18, .82);
      backdrop-filter: blur(18px);
      box-shadow: 0 10px 32px rgba(0, 0, 0, .28);
    }

    .brand-mark {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: -40%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,.42), transparent);
      transform: translateX(-70%) rotate(18deg);
      animation: shine 4.8s ease-in-out infinite;
      z-index: -1;
    }

    @keyframes shine {
      0%, 48% { transform: translateX(-80%) rotate(18deg); }
      70%, 100% { transform: translateX(80%) rotate(18deg); }
    }

    .nav-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 38px;
      padding: 8px 14px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      color: #cbd5e1;
      background: rgba(255,255,255,.045);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.2;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }

    .nav-chip:hover,
    .nav-chip:focus-visible {
      transform: translateY(-1px);
      color: #fff;
      border-color: rgba(34, 211, 238, .55);
      background: rgba(34, 211, 238, .12);
      box-shadow: 0 0 0 4px rgba(34, 211, 238, .08);
      outline: none;
    }

    .nav-chip.active {
      color: #07111f;
      border-color: transparent;
      background: linear-gradient(135deg, var(--cyan), var(--violet) 58%, var(--orange));
      box-shadow: 0 10px 26px rgba(34, 211, 238, .18);
    }

    .search-shell {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 8px 12px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.055);
      color: #e2e8f0;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .search-shell:focus-within {
      border-color: rgba(34, 211, 238, .6);
      background: rgba(255,255,255,.08);
      box-shadow: 0 0 0 4px rgba(34, 211, 238, .1);
    }

    .search-shell input {
      width: 180px;
      border: 0;
      outline: 0;
      background: transparent;
      color: #fff;
      font-size: 14px;
    }

    .search-shell input::placeholder {
      color: #94a3b8;
    }

    .mobile-panel {
      display: none;
      border-top: 1px solid var(--line);
      background: rgba(7, 10, 18, .96);
    }

    .mobile-panel.open {
      display: block;
    }

    .section {
      padding: 76px 0;
      position: relative;
    }

    .section-tight {
      padding: 46px 0;
    }

    .hero-band {
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(34, 211, 238, .16), transparent 32%),
        linear-gradient(115deg, rgba(139, 92, 246, .18), transparent 45%),
        linear-gradient(180deg, rgba(16, 21, 36, .62), rgba(7, 10, 18, .18));
    }

    .hero-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 0 23%, rgba(255,255,255,.045) 23.2% 23.5%, transparent 23.7% 100%),
        radial-gradient(circle at 72% 35%, rgba(251, 146, 60, .18), transparent 30%);
      pointer-events: none;
    }

    .coupon {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(34, 211, 238, .28);
      border-radius: 28px;
      background:
        linear-gradient(145deg, rgba(34, 211, 238, .2), rgba(139, 92, 246, .18) 48%, rgba(251, 146, 60, .18)),
        rgba(16, 21, 36, .86);
      box-shadow: var(--shadow);
    }

    .coupon::before,
    .coupon::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #080b14;
      border: 1px solid rgba(255,255,255,.12);
      transform: translateY(-50%);
      z-index: 2;
    }

    .coupon::before {
      left: -17px;
    }

    .coupon::after {
      right: -17px;
    }

    .coupon-line {
      border-top: 1px dashed rgba(255,255,255,.25);
    }

    .btn-primary,
    .btn-secondary,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 900;
      line-height: 1.1;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .btn-primary {
      color: #07111f;
      background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--orange));
      box-shadow: 0 16px 36px rgba(34, 211, 238, .22);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 20px 46px rgba(139, 92, 246, .34);
      outline: none;
    }

    .btn-secondary {
      color: #f8fafc;
      border-color: rgba(255,255,255,.16);
      background: rgba(255,255,255,.07);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(34, 211, 238, .5);
      background: rgba(34, 211, 238, .12);
      outline: none;
    }

    .btn-ghost {
      color: #cbd5e1;
      min-height: 38px;
      padding: 9px 13px;
      border-color: rgba(255,255,255,.1);
      background: rgba(255,255,255,.04);
      font-size: 13px;
    }

    .btn-ghost:hover,
    .btn-ghost:focus-visible {
      color: #fff;
      border-color: rgba(251, 146, 60, .45);
      background: rgba(251, 146, 60, .1);
      outline: none;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 28px;
      padding: 6px 10px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.055);
      color: #cbd5e1;
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
    }

    .badge.cyan {
      color: #a5f3fc;
      border-color: rgba(34, 211, 238, .3);
      background: rgba(34, 211, 238, .09);
    }

    .badge.orange {
      color: #fed7aa;
      border-color: rgba(251, 146, 60, .34);
      background: rgba(251, 146, 60, .1);
    }

    .badge.violet {
      color: #ddd6fe;
      border-color: rgba(139, 92, 246, .34);
      background: rgba(139, 92, 246, .1);
    }

    .badge.green {
      color: #bbf7d0;
      border-color: rgba(52, 211, 153, .34);
      background: rgba(52, 211, 153, .1);
    }

    .panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(14px);
    }

    .content-card {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
    }

    .content-card:hover {
      transform: translateY(-4px);
      border-color: rgba(34, 211, 238, .38);
      background: linear-gradient(180deg, rgba(34,211,238,.1), rgba(255,255,255,.04));
      box-shadow: 0 22px 48px rgba(0, 0, 0, .32);
    }

    .thumb {
      position: relative;
      min-height: 146px;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,.1);
      background:
        radial-gradient(circle at 20% 18%, rgba(34, 211, 238, .35), transparent 26%),
        radial-gradient(circle at 80% 18%, rgba(251, 146, 60, .28), transparent 22%),
        linear-gradient(135deg, rgba(139, 92, 246, .24), rgba(15, 23, 42, .86));
    }

    .thumb::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 18px;
      background:
        linear-gradient(90deg, rgba(255,255,255,.13) 0 22%, transparent 22% 100%),
        repeating-linear-gradient(0deg, rgba(255,255,255,.09) 0 1px, transparent 1px 14px);
      opacity: .72;
    }

    .thumb::after {
      content: "18+";
      position: absolute;
      right: 14px;
      top: 14px;
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color: #07111f;
      background: linear-gradient(135deg, #fef08a, #fb923c);
      font-weight: 1000;
      box-shadow: 0 10px 26px rgba(251, 146, 60, .25);
    }

    .line-clamp-2 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .filter-bar {
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 26px;
      background: rgba(15, 23, 42, .72);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(14px);
    }

    .filter-input {
      width: 100%;
      min-height: 46px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      color: #fff;
      outline: none;
      padding: 0 16px;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .filter-input:focus {
      border-color: rgba(34, 211, 238, .58);
      background: rgba(255,255,255,.08);
      box-shadow: 0 0 0 4px rgba(34, 211, 238, .1);
    }

    .filter-input::placeholder {
      color: #94a3b8;
    }

    .select-pill {
      min-height: 46px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      color: #e2e8f0;
      outline: none;
      padding: 0 14px;
    }

    .select-pill option {
      color: #0f172a;
    }

    .stat-tile {
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 18px;
      background: rgba(255,255,255,.045);
      padding: 16px;
    }

    .progress-track {
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--violet), var(--orange));
      box-shadow: 0 0 22px rgba(34, 211, 238, .32);
    }

    .trend-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 16px;
      background: rgba(255,255,255,.045);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .trend-item:hover {
      transform: translateX(3px);
      border-color: rgba(139, 92, 246, .42);
      background: rgba(139, 92, 246, .1);
    }

    .timeline-dot {
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 6px rgba(34, 211, 238, .12);
      flex: 0 0 auto;
    }

    .faq-item {
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      background: rgba(255,255,255,.045);
      overflow: hidden;
    }

    .faq-button {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px;
      color: #fff;
      text-align: left;
      font-weight: 900;
    }

    .faq-button:focus-visible {
      outline: 3px solid rgba(34, 211, 238, .35);
      outline-offset: -3px;
    }

    .faq-panel {
      display: none;
      padding: 0 18px 18px;
      color: #cbd5e1;
      font-size: 14px;
    }

    .faq-item.open .faq-panel {
      display: block;
    }

    .faq-icon {
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(34, 211, 238, .1);
      color: #67e8f9;
      transition: transform .2s ease;
      flex: 0 0 auto;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(34, 211, 238, .28);
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(34, 211, 238, .16), rgba(139, 92, 246, .16) 52%, rgba(251, 146, 60, .14)),
        rgba(16, 21, 36, .88);
      box-shadow: var(--shadow);
    }

    .cta-band::after {
      content: "";
      position: absolute;
      inset: auto -10% -45% 50%;
      height: 240px;
      background: radial-gradient(circle, rgba(34, 211, 238, .24), transparent 62%);
      pointer-events: none;
    }

    footer {
      color: #e2e8f0;
    }

    footer .container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
    }

    footer a,
    footer button {
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    }

    @media (max-width: 1024px) {
      .section {
        padding: 62px 0;
      }

      .search-shell input {
        width: 140px;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .section {
        padding: 52px 0;
      }

      .hero-band {
        padding-top: 10px;
      }

      .coupon {
        border-radius: 22px;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
      }

      .filter-bar {
        border-radius: 22px;
      }
    }

    @media (max-width: 520px) {
      .nav-chip {
        min-height: 34px;
        padding: 7px 11px;
        font-size: 13px;
      }

      .brand-title {
        max-width: 170px;
      }

      .section {
        padding: 44px 0;
      }

      .thumb {
        min-height: 128px;
      }

      .coupon::before,
      .coupon::after {
        width: 26px;
        height: 26px;
      }

      .coupon::before {
        left: -13px;
      }

      .coupon::after {
        right: -13px;
      }
    }
