/* roulang page: index */
:root{
      --bg:#0e0f12;
      --bg-soft:#17191f;
      --panel:#20232a;
      --panel-2:#f4f2ec;
      --text:#f7f4ea;
      --text-dark:#15161a;
      --muted:#aaa79d;
      --muted-dark:#67645d;
      --line:rgba(255,255,255,.13);
      --line-dark:rgba(20,20,20,.12);
      --gold:#f2b744;
      --red:#ff4d3d;
      --cyan:#36e0c2;
      --white:#fff;
      --radius:8px;
      --shadow:0 18px 50px rgba(0,0,0,.32);
      --shadow-soft:0 12px 28px rgba(0,0,0,.18);
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 16% 4%,rgba(242,183,68,.22),transparent 28%),
        radial-gradient(circle at 82% 8%,rgba(255,77,61,.2),transparent 26%),
        linear-gradient(180deg,#101116 0%,#0b0c0f 48%,#15161a 100%);
      line-height:1.72;
      letter-spacing:0;
    }
    a{color:inherit;text-decoration:none;transition:.2s ease}
    a:hover{color:var(--gold)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    .site-container{width:min(var(--container),calc(100% - 32px));margin:0 auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:99;
      border-bottom:1px solid var(--line);
      background:rgba(12,13,16,.88);
      backdrop-filter:blur(18px);
    }
    .nav-shell{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      color:var(--text);
      white-space:nowrap;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:7px;
      display:grid;
      place-items:center;
      color:#111;
      font-weight:950;
      background:linear-gradient(135deg,var(--gold),#ffe7a1 58%,var(--red));
      box-shadow:0 0 0 1px rgba(255,255,255,.18),0 10px 26px rgba(242,183,68,.22);
    }
    .brand span:last-child{font-size:18px}
    .chip-nav{
      flex:1;
      display:flex;
      justify-content:center;
      gap:8px;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .chip-nav::-webkit-scrollbar{display:none}
    .chip-nav a{
      padding:9px 15px;
      border:1px solid var(--line);
      border-radius:999px;
      color:#d9d5ca;
      background:rgba(255,255,255,.04);
      font-size:14px;
      font-weight:700;
      white-space:nowrap;
    }
    .chip-nav a:hover,.chip-nav a.active{
      color:#101116;
      border-color:var(--gold);
      background:var(--gold);
      transform:translateY(-1px);
    }
    .nav-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 18px;
      border-radius:7px;
      border:1px solid rgba(242,183,68,.7);
      background:linear-gradient(135deg,var(--gold),#ffd36f);
      color:#111;
      font-weight:900;
      box-shadow:0 12px 28px rgba(242,183,68,.18);
    }
    .nav-cta:hover{color:#111;filter:brightness(1.07);transform:translateY(-1px)}
    .btn-main,.btn-ghost,.btn-darkline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:7px;
      min-height:46px;
      padding:0 20px;
      font-weight:900;
      border:1px solid transparent;
      transition:.22s ease;
    }
    .btn-main{background:var(--red);color:#fff;box-shadow:0 14px 32px rgba(255,77,61,.28)}
    .btn-main:hover{color:#fff;filter:brightness(1.08);transform:translateY(-2px)}
    .btn-ghost{background:rgba(255,255,255,.06);border-color:var(--line);color:var(--text)}
    .btn-ghost:hover{background:rgba(255,255,255,.1);border-color:var(--gold);color:var(--gold);transform:translateY(-2px)}
    .btn-darkline{background:#15161a;border-color:rgba(0,0,0,.15);color:#fff}
    .btn-darkline:hover{background:#000;color:var(--gold);transform:translateY(-2px)}
    .hero{
      position:relative;
      min-height:650px;
      display:flex;
      align-items:end;
      overflow:hidden;
      border-bottom:1px solid var(--line);
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(10,10,12,.92) 0%,rgba(10,10,12,.52) 50%,rgba(10,10,12,.86) 100%),
        radial-gradient(circle at 50% 0%,rgba(242,183,68,.34),transparent 38%),
        repeating-linear-gradient(90deg,rgba(255,255,255,.06) 0 1px,transparent 1px 86px);
    }
    .hero::after{
      content:"";
      position:absolute;
      left:0;right:0;bottom:0;height:180px;
      background:linear-gradient(0deg,var(--bg),transparent);
    }
    .hero-stage{
      position:absolute;
      inset:92px 24px 62px;
      border:1px solid rgba(255,255,255,.1);
      border-radius:8px;
      background:
        linear-gradient(135deg,rgba(255,77,61,.16),transparent 34%),
        linear-gradient(45deg,rgba(54,224,194,.12),transparent 38%),
        linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 30px 80px rgba(0,0,0,.26);
    }
    .series-tabs{
      position:absolute;
      z-index:3;
      top:116px;
      left:50%;
      transform:translateX(-50%);
      width:min(900px,calc(100% - 40px));
      display:flex;
      gap:8px;
      justify-content:center;
      padding:8px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(14,15,18,.74);
      backdrop-filter:blur(18px);
    }
    .series-tabs span{
      padding:8px 14px;
      border-radius:999px;
      font-size:13px;
      font-weight:800;
      color:#e6e0d2;
      white-space:nowrap;
    }
    .series-tabs span.active{background:var(--gold);color:#101116}
    .hero-content{
      position:relative;
      z-index:4;
      width:min(1040px,calc(100% - 32px));
      margin:0 auto 74px;
      text-align:center;
    }
    .status-row{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-bottom:18px}
    .badge-live,.badge-soft,.badge-dark{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 10px;
      border-radius:999px;
      font-size:13px;
      font-weight:900;
      border:1px solid var(--line);
    }
    .badge-live{background:rgba(255,77,61,.16);color:#ffd8d4;border-color:rgba(255,77,61,.42)}
    .badge-live::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--red);box-shadow:0 0 0 5px rgba(255,77,61,.14)}
    .badge-soft{background:rgba(242,183,68,.14);color:#ffe3a1;border-color:rgba(242,183,68,.34)}
    .badge-dark{background:rgba(255,255,255,.06);color:#e7e2d6}
    h1{
      margin:0 auto 18px;
      max-width:900px;
      font-size:clamp(38px,6vw,76px);
      line-height:1.04;
      font-weight:950;
      letter-spacing:0;
    }
    .hero-lead{
      max-width:820px;
      margin:0 auto 28px;
      color:#d5d0c4;
      font-size:18px;
    }
    .hero-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-bottom:30px}
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      max-width:760px;
      margin:0 auto;
    }
    .stat-tile{
      padding:15px 14px;
      border:1px solid var(--line);
      border-radius:8px;
      background:rgba(255,255,255,.07);
      backdrop-filter:blur(10px);
    }
    .stat-tile strong{display:block;font-size:26px;line-height:1;color:var(--gold)}
    .stat-tile span{display:block;margin-top:8px;color:#c9c3b6;font-size:13px}
    main{overflow:hidden}
    section{padding:84px 0}
    .section-light{background:var(--panel-2);color:var(--text-dark)}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:22px;
      margin-bottom:30px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--gold);
      font-size:13px;
      font-weight:950;
      text-transform:uppercase;
    }
    .section-kicker::before{content:"";width:28px;height:2px;background:var(--gold)}
    h2{font-size:clamp(28px,3.2vw,44px);line-height:1.16;font-weight:950;margin:8px 0 0}
    .section-head p{max-width:520px;margin:0;color:var(--muted)}
    .section-light .section-head p{color:var(--muted-dark)}
    .rail-wrap{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:16px;
    }
    .rail-card{
      min-height:280px;
      padding:24px;
      border-radius:8px;
      border:1px solid var(--line);
      background:
        linear-gradient(135deg,rgba(242,183,68,.16),transparent 38%),
        linear-gradient(180deg,#242730,#17191f);
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
    }
    .rail-card::after{
      content:"";
      position:absolute;
      right:-80px;bottom:-90px;width:260px;height:260px;
      border-radius:50%;
      border:38px solid rgba(255,255,255,.06);
    }
    .rail-card h3,.recommend-card h3,.playlist-card h3,.guest-card h3,.price-card h3{font-weight:950;margin:12px 0 8px}
    .rail-card p,.recommend-card p,.playlist-card p,.guest-card p,.price-card p{color:#c9c3b6;margin:0}
    .mini-stack{display:grid;gap:16px}
    .mini-panel{
      padding:20px;
      border-radius:8px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.06);
      min-height:132px;
    }
    .timeline{
      position:relative;
      display:grid;
      gap:14px;
      margin-top:8px;
    }
    .timeline::before{
      content:"";
      position:absolute;
      left:18px;
      top:10px;
      bottom:10px;
      width:2px;
      background:linear-gradient(var(--gold),rgba(255,255,255,.08));
    }
    .time-item{
      position:relative;
      display:grid;
      grid-template-columns:76px 1fr auto;
      gap:18px;
      align-items:center;
      padding:18px 18px 18px 52px;
      border:1px solid var(--line);
      border-radius:8px;
      background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.04));
    }
    .time-item::before{
      content:"";
      position:absolute;
      left:11px;
      width:16px;height:16px;
      border-radius:50%;
      background:var(--gold);
      box-shadow:0 0 0 6px rgba(242,183,68,.14);
    }
    .time-mark{font-weight:950;color:var(--gold)}
    .time-item h3{font-size:18px;margin:0 0 4px;font-weight:950}
    .time-item p{margin:0;color:#c9c3b6}
    .grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
    .recommend-card,.guest-card,.price-card,.playlist-card,.trust-card{
      border:1px solid var(--line);
      border-radius:8px;
      background:rgba(255,255,255,.06);
      padding:22px;
      box-shadow:var(--shadow-soft);
      transition:.22s ease;
    }
    .recommend-card:hover,.guest-card:hover,.price-card:hover,.playlist-card:hover,.trust-card:hover{transform:translateY(-4px);border-color:rgba(242,183,68,.45)}
    .cover{
      height:132px;
      border-radius:7px;
      margin-bottom:16px;
      border:1px solid rgba(255,255,255,.1);
      background:
        radial-gradient(circle at 22% 20%,rgba(242,183,68,.42),transparent 26%),
        radial-gradient(circle at 82% 10%,rgba(255,77,61,.35),transparent 24%),
        linear-gradient(135deg,#30343e,#15161a);
      position:relative;
      overflow:hidden;
    }
    .cover::after{
      content:"";
      position:absolute;inset:auto 0 0;height:42%;
      background:repeating-linear-gradient(90deg,rgba(255,255,255,.08) 0 1px,transparent 1px 34px);
    }
    .avatar-badge{
      width:54px;height:54px;border-radius:50%;
      display:grid;place-items:center;
      color:#111;font-weight:950;
      background:linear-gradient(135deg,var(--gold),#fff0b8);
      margin-bottom:14px;
    }
    .playlist-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    .playlist-card{background:#fff;color:var(--text-dark);border-color:var(--line-dark)}
    .playlist-card p{color:var(--muted-dark)}
    .info-news{
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:18px;
    }
    .news-list{
      border:1px solid var(--line);
      border-radius:8px;
      overflow:hidden;
      background:rgba(255,255,255,.05);
    }
    .news-row{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:17px 18px;
      border-bottom:1px solid var(--line);
    }
    .news-row:last-child{border-bottom:0}
    .news-row a{font-weight:900;color:#f8f4ea}
    .news-row a:hover{color:var(--gold)}
    .news-date{color:var(--muted);font-size:13px}
    .side-pick{
      padding:24px;
      border-radius:8px;
      background:linear-gradient(180deg,#262932,#17191f);
      border:1px solid var(--line);
    }
    .price-card{
      display:flex;
      flex-direction:column;
      min-height:100%;
    }
    .price-card.featured{border-color:rgba(255,77,61,.58);background:linear-gradient(180deg,rgba(255,77,61,.14),rgba(255,255,255,.06))}
    .price{font-size:34px;font-weight:950;color:var(--gold);margin:10px 0}
    .check-list{padding:0;margin:16px 0 22px;list-style:none;display:grid;gap:10px}
    .check-list li{display:flex;gap:9px;color:#d7d1c5}
    .check-list li::before{content:"✓";color:var(--cyan);font-weight:950}
    .price-card .btn-main,.price-card .btn-ghost{margin-top:auto}
    .trust-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
    }
    .trust-card{display:flex;gap:12px;align-items:flex-start;background:#fff;color:var(--text-dark);border-color:var(--line-dark)}
    .trust-icon{
      width:42px;height:42px;border-radius:7px;
      display:grid;place-items:center;
      flex:0 0 auto;
      background:#15161a;color:var(--gold);font-weight:950;
    }
    .trust-card h3{font-size:17px;margin:0 0 4px;font-weight:950}
    .trust-card p{margin:0;color:var(--muted-dark);font-size:14px}
    .story-band{
      border-radius:8px;
      border:1px solid rgba(242,183,68,.28);
      background:
        linear-gradient(100deg,rgba(242,183,68,.2),transparent 42%),
        linear-gradient(180deg,#242730,#121317);
      padding:38px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:center;
      box-shadow:var(--shadow);
    }
    .story-metrics{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
    .metric{
      padding:18px;
      border-radius:8px;
      background:rgba(255,255,255,.07);
      border:1px solid var(--line);
    }
    .metric strong{display:block;font-size:30px;color:var(--gold);line-height:1}
    .metric span{display:block;margin-top:8px;color:#cfc8b9}
    .accordion-item{
      color:var(--text);
      background:rgba(255,255,255,.06);
      border:1px solid var(--line)!important;
      border-radius:8px!important;
      overflow:hidden;
      margin-bottom:10px;
    }
    .accordion-button{
      background:rgba(255,255,255,.03);
      color:var(--text);
      font-weight:950;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){background:rgba(242,183,68,.12);color:var(--gold)}
    .accordion-button::after{filter:invert(1)}
    .accordion-body{color:#d2ccbf}
    .final-cta{
      padding:54px;
      border-radius:8px;
      background:
        radial-gradient(circle at 16% 26%,rgba(255,77,61,.28),transparent 28%),
        linear-gradient(135deg,#2a1c19,#18191e 56%,#242012);
      border:1px solid rgba(242,183,68,.36);
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:22px;
      align-items:center;
      box-shadow:var(--shadow);
    }
    .cta-form{
      display:grid;
      grid-template-columns:1fr auto;
      gap:10px;
      padding:8px;
      border:1px solid var(--line);
      border-radius:8px;
      background:rgba(255,255,255,.08);
    }
    .cta-form input{
      min-height:48px;
      border:0;
      outline:0;
      background:transparent;
      color:#fff;
      padding:0 12px;
    }
    .cta-form input::placeholder{color:#bab2a4}
    .cta-note{font-size:13px;color:#c9c3b6;margin-top:10px}
    .site-footer{
      padding:44px 0 28px;
      border-top:1px solid var(--line);
      background:#0b0c0f;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:start;
    }
    .footer-links{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap}
    .footer-links a{
      padding:8px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      color:#d5cec1;
      font-weight:800;
      font-size:13px;
    }
    .footer-links a:hover{border-color:var(--gold);color:var(--gold)}
    .copyright{
      margin-top:28px;
      padding-top:20px;
      border-top:1px solid var(--line);
      color:#8f897d;
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    .floating-cta{
      position:fixed;
      left:50%;
      bottom:14px;
      transform:translateX(-50%);
      z-index:98;
      display:none;
      width:calc(100% - 28px);
      max-width:520px;
      padding:8px;
      border-radius:10px;
      border:1px solid rgba(242,183,68,.42);
      background:rgba(12,13,16,.88);
      backdrop-filter:blur(16px);
      box-shadow:var(--shadow);
    }
    .floating-cta a{width:100%}
    :focus-visible{outline:3px solid rgba(242,183,68,.42);outline-offset:3px}
    @media (max-width:1024px){
      .nav-shell{flex-wrap:wrap;padding:14px 0}
      .chip-nav{order:3;width:100%;justify-content:flex-start}
      .rail-wrap,.info-news,.story-band,.final-cta{grid-template-columns:1fr}
      .grid-3{grid-template-columns:repeat(2,1fr)}
      .trust-strip{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:768px){
      section{padding:62px 0}
      .hero{min-height:720px}
      .series-tabs{justify-content:flex-start;overflow-x:auto;top:104px}
      .hero-content{text-align:left;margin-bottom:56px}
      .status-row,.hero-actions{justify-content:flex-start}
      .hero-stats{grid-template-columns:1fr}
      .section-head{display:block}
      .section-head p{margin-top:12px}
      .grid-3,.playlist-grid,.trust-strip{grid-template-columns:1fr}
      .time-item{grid-template-columns:1fr;padding-left:48px}
      .news-row{grid-template-columns:1fr}
      .final-cta,.story-band{padding:28px}
      .floating-cta{display:block}
      body{padding-bottom:76px}
    }
    @media (max-width:520px){
      .site-container{width:min(100% - 22px,var(--container))}
      .brand span:last-child{font-size:16px}
      .nav-cta{display:none}
      .hero-stage{inset:88px 10px 46px}
      .series-tabs{width:calc(100% - 22px)}
      .btn-main,.btn-ghost,.btn-darkline{width:100%}
      .cta-form{grid-template-columns:1fr}
      .stat-tile strong{font-size:22px}
      .cover{height:112px}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }

/* roulang page: category1 */
:root {
      --bg: #0b0b09;
      --bg-2: #15130f;
      --panel: #1d1a14;
      --panel-2: #252117;
      --text: #f5efe3;
      --muted: #aaa398;
      --soft: #d9cdb7;
      --line: rgba(245, 239, 227, .14);
      --line-strong: rgba(255, 211, 100, .34);
      --gold: #ffd364;
      --amber: #ff9f1c;
      --red: #ff4d3d;
      --green: #39d98a;
      --black: #050505;
      --radius: 8px;
      --shadow: 0 22px 70px rgba(0, 0, 0, .42);
      --shadow-soft: 0 12px 34px rgba(0, 0, 0, .26);
      --container: 1180px;
      --section: 86px;
      --fast: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
      line-height: 1.68;
      background:
        radial-gradient(circle at 18% 0%, rgba(255, 211, 100, .18), transparent 28%),
        radial-gradient(circle at 82% 8%, rgba(255, 77, 61, .13), transparent 30%),
        linear-gradient(180deg, #0b0b09 0%, #15130f 46%, #0b0b09 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--fast), border-color var(--fast), background var(--fast), transform var(--fast), box-shadow var(--fast);
    }

    a:hover {
      color: var(--gold);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible {
      outline: 3px solid rgba(255, 211, 100, .45);
      outline-offset: 3px;
    }

    .site-container {
      width: min(100% - 32px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(11, 11, 9, .88);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(16px);
    }

    .nav-shell {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-weight: 900;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand:hover {
      color: var(--text);
      transform: translateY(-1px);
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      display: inline-grid;
      place-items: center;
      border-radius: 7px;
      color: #171107;
      font-weight: 950;
      background: linear-gradient(135deg, var(--gold), var(--amber));
      box-shadow: 0 0 0 1px rgba(255, 255, 255, .12), 0 12px 24px rgba(255, 159, 28, .18);
    }

    .chip-nav {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, .045);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
    }

    .chip-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 16px;
      border-radius: 999px;
      color: var(--soft);
      font-size: 14px;
      font-weight: 800;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .chip-nav a:hover {
      color: var(--text);
      background: rgba(255, 211, 100, .11);
      border-color: rgba(255, 211, 100, .24);
    }

    .chip-nav a.active {
      color: #171107;
      background: var(--gold);
      box-shadow: 0 10px 26px rgba(255, 211, 100, .2);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 18px;
      border-radius: var(--radius);
      color: #130f08;
      font-weight: 900;
      background: linear-gradient(135deg, var(--gold), var(--amber));
      border: 1px solid rgba(255, 211, 100, .62);
      box-shadow: 0 14px 32px rgba(255, 159, 28, .18);
      white-space: nowrap;
    }

    .nav-cta:hover {
      color: #130f08;
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(255, 159, 28, .28);
    }

    main {
      position: relative;
      z-index: 1;
    }

    .section {
      padding: var(--section) 0;
    }

    .section-tight {
      padding: 48px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      color: var(--gold);
      font-weight: 900;
      font-size: 13px;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .section-kicker::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--gold);
      box-shadow: 0 0 16px rgba(255, 211, 100, .8);
    }

    .section-title {
      margin: 0;
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.12;
      font-weight: 950;
      letter-spacing: 0;
    }

    .section-lead {
      max-width: 780px;
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 17px;
    }

    .hero-category {
      position: relative;
      padding: 72px 0 54px;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
    }

    .hero-category::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 211, 100, .13) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 211, 100, .08) 1px, transparent 1px);
      background-size: 74px 74px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 78%);
      pointer-events: none;
    }

    .hero-category::after {
      content: "";
      position: absolute;
      width: 620px;
      height: 620px;
      right: -260px;
      top: -230px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 211, 100, .18), rgba(255, 77, 61, .08) 42%, transparent 68%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr);
      gap: 30px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 26px 0;
    }

    .status-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .badge-live,
    .badge-soft,
    .badge-hot,
    .badge-safe {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 30px;
      padding: 5px 11px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 850;
      border: 1px solid var(--line);
      white-space: nowrap;
    }

    .badge-live {
      color: #160d08;
      background: var(--gold);
      border-color: rgba(255, 211, 100, .7);
    }

    .badge-live::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 6px rgba(255, 77, 61, .18);
    }

    .badge-soft {
      color: var(--soft);
      background: rgba(255, 255, 255, .055);
    }

    .badge-hot {
      color: #fff2d0;
      background: rgba(255, 77, 61, .12);
      border-color: rgba(255, 77, 61, .34);
    }

    .badge-safe {
      color: #dfffe9;
      background: rgba(57, 217, 138, .12);
      border-color: rgba(57, 217, 138, .32);
    }

    h1 {
      margin: 0;
      max-width: 900px;
      font-size: clamp(38px, 6vw, 72px);
      line-height: .98;
      font-weight: 950;
      letter-spacing: 0;
    }

    .hero-copy p {
      margin: 22px 0 0;
      max-width: 760px;
      color: var(--soft);
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .btn-main,
    .btn-ghost,
    .btn-line {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 20px;
      border-radius: var(--radius);
      font-weight: 950;
      border: 1px solid transparent;
      transition: transform var(--fast), box-shadow var(--fast), background var(--fast), border-color var(--fast), color var(--fast);
    }

    .btn-main {
      color: #130f08;
      background: linear-gradient(135deg, var(--gold), var(--amber));
      border-color: rgba(255, 211, 100, .74);
      box-shadow: 0 18px 40px rgba(255, 159, 28, .22);
    }

    .btn-main:hover {
      color: #130f08;
      transform: translateY(-2px);
      box-shadow: 0 24px 54px rgba(255, 159, 28, .32);
    }

    .btn-ghost {
      color: var(--text);
      background: rgba(255, 255, 255, .065);
      border-color: var(--line);
    }

    .btn-ghost:hover {
      color: var(--gold);
      background: rgba(255, 211, 100, .09);
      border-color: rgba(255, 211, 100, .32);
      transform: translateY(-2px);
    }

    .btn-line {
      min-height: 40px;
      padding-inline: 14px;
      color: var(--soft);
      background: transparent;
      border-color: var(--line);
      font-size: 14px;
    }

    .btn-line:hover {
      color: var(--gold);
      border-color: rgba(255, 211, 100, .42);
      background: rgba(255, 211, 100, .08);
      transform: translateY(-1px);
    }

    .score-panel {
      position: relative;
      padding: 22px;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(37, 33, 23, .96), rgba(15, 14, 10, .94)),
        radial-gradient(circle at 80% 0%, rgba(255, 211, 100, .16), transparent 36%);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .score-panel::before {
      content: "";
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(255, 211, 100, .12);
      border-radius: 6px;
      pointer-events: none;
    }

    .panel-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 22px;
      position: relative;
      z-index: 1;
    }

    .panel-title {
      margin: 0;
      font-size: 20px;
      font-weight: 950;
    }

    .panel-sub {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 13px;
    }

    .count-ring {
      width: 112px;
      height: 112px;
      flex: 0 0 112px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background:
        conic-gradient(var(--gold) 0 72%, rgba(255, 255, 255, .1) 72% 100%);
      box-shadow: inset 0 0 0 10px rgba(0, 0, 0, .42), 0 0 34px rgba(255, 211, 100, .14);
    }

    .count-ring span {
      width: 80px;
      height: 80px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--gold);
      background: #10100d;
      font-size: 24px;
      font-weight: 950;
      border: 1px solid rgba(255, 211, 100, .22);
    }

    .metric-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 18px;
    }

    .metric {
      padding: 14px 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .045);
    }

    .metric strong {
      display: block;
      font-size: 22px;
      line-height: 1;
      color: var(--text);
    }

    .metric span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
    }

    .signal-list {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .signal-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 12px;
      color: var(--soft);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(0, 0, 0, .18);
      font-size: 14px;
    }

    .signal-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 14px rgba(57, 217, 138, .7);
    }

    .filter-board {
      margin-top: -28px;
      position: relative;
      z-index: 5;
    }

    .filter-inner {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(21, 19, 15, .94);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(14px);
    }

    .filter-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 14px;
    }

    .filter-head strong {
      font-size: 17px;
      font-weight: 950;
    }

    .filter-head span {
      color: var(--muted);
      font-size: 13px;
    }

    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      color: var(--soft);
      background: rgba(255, 255, 255, .05);
      border: 1px solid var(--line);
      font-weight: 850;
      cursor: pointer;
    }

    .filter-chip:hover,
    .filter-chip.active {
      color: #141006;
      background: var(--gold);
      border-color: rgba(255, 211, 100, .7);
      transform: translateY(-1px);
    }

    .summary-strip {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, .6fr);
      gap: 12px;
      align-items: stretch;
    }

    .summary-card {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(37, 33, 23, .86), rgba(20, 18, 14, .9));
    }

    .summary-card.primary {
      border-color: rgba(255, 211, 100, .28);
      background:
        linear-gradient(135deg, rgba(255, 211, 100, .12), rgba(255, 77, 61, .05)),
        rgba(30, 27, 19, .92);
    }

    .summary-card strong {
      display: block;
      color: var(--text);
      font-size: 24px;
      font-weight: 950;
      line-height: 1;
    }

    .summary-card span,
    .summary-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .entry-card {
      min-height: 100%;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .045);
      overflow: hidden;
      box-shadow: 0 1px 0 rgba(255, 255, 255, .04);
      transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast), background var(--fast);
    }

    .entry-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 211, 100, .32);
      background: rgba(255, 255, 255, .065);
      box-shadow: var(--shadow-soft);
    }

    .cover {
      position: relative;
      height: 138px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255, 211, 100, .24), transparent 45%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 22px),
        linear-gradient(145deg, #2d271a, #11100d);
    }

    .cover::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(255, 211, 100, .22);
      border-radius: 6px;
    }

    .cover::after {
      content: "";
      position: absolute;
      width: 150px;
      height: 150px;
      right: -45px;
      top: -40px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 77, 61, .34), transparent 62%);
    }

    .cover-label {
      position: absolute;
      left: 14px;
      top: 14px;
      z-index: 1;
    }

    .entry-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 18px;
    }

    .entry-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 9px;
      border-radius: 999px;
      color: var(--soft);
      background: rgba(255, 255, 255, .055);
      border: 1px solid var(--line);
      font-size: 12px;
      font-weight: 850;
    }

    .tag.gold {
      color: #151006;
      background: var(--gold);
      border-color: rgba(255, 211, 100, .7);
    }

    .entry-card h2,
    .entry-card h3 {
      margin: 0;
      font-size: 20px;
      line-height: 1.24;
      font-weight: 950;
    }

    .entry-card p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .entry-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
      padding-top: 18px;
    }

    .status-mini {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--soft);
      font-size: 13px;
      font-weight: 850;
    }

    .status-mini::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 12px rgba(57, 217, 138, .72);
    }

    .hot-zone {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 18px;
      align-items: stretch;
    }

    .rank-panel,
    .recommend-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .045);
      overflow: hidden;
    }

    .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 18px;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, .035);
    }

    .panel-head h2,
    .panel-head h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 950;
    }

    .rank-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .rank-list li {
      display: grid;
      grid-template-columns: 42px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 15px 18px;
      border-bottom: 1px solid var(--line);
    }

    .rank-list li:last-child {
      border-bottom: 0;
    }

    .rank-no {
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      color: #151006;
      font-weight: 950;
      border-radius: 6px;
      background: var(--gold);
    }

    .rank-text strong {
      display: block;
      font-weight: 950;
    }

    .rank-text span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 2px;
    }

    .recommend-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      padding: 18px;
    }

    .recommend-item {
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(255, 211, 100, .08), transparent),
        rgba(0, 0, 0, .16);
    }

    .recommend-item strong {
      display: block;
      font-size: 17px;
      font-weight: 950;
    }

    .recommend-item span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 12px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 18px;
      bottom: 18px;
      left: 19px;
      width: 2px;
      background: linear-gradient(180deg, var(--gold), rgba(255, 211, 100, .06));
    }

    .time-row {
      position: relative;
      display: grid;
      grid-template-columns: 58px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .045);
    }

    .time-dot {
      position: relative;
      z-index: 1;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      color: #151006;
      font-weight: 950;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 7px rgba(255, 211, 100, .11);
    }

    .time-row strong {
      display: block;
      font-size: 18px;
      font-weight: 950;
    }

    .time-row p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .tier-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .tier-card {
      position: relative;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .045);
    }

    .tier-card.featured {
      border-color: rgba(255, 211, 100, .44);
      background:
        linear-gradient(145deg, rgba(255, 211, 100, .13), rgba(255, 77, 61, .06)),
        rgba(255, 255, 255, .05);
      box-shadow: var(--shadow-soft);
    }

    .tier-card h3 {
      margin: 0;
      font-size: 22px;
      font-weight: 950;
    }

    .tier-card .tier-note {
      color: var(--muted);
      margin: 10px 0 18px;
      font-size: 14px;
    }

    .check-list {
      display: grid;
      gap: 10px;
      margin: 0 0 20px;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 9px;
      color: var(--soft);
      font-size: 14px;
    }

    .check-list li::before {
      content: "✓";
      color: var(--green);
      font-weight: 950;
    }

    .faq-shell {
      max-width: 960px;
      margin: 0 auto;
    }

    .accordion {
      display: grid;
      gap: 12px;
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: transparent;
      --bs-accordion-btn-focus-box-shadow: none;
    }

    .accordion-item {
      overflow: hidden;
      border: 1px solid var(--line) !important;
      border-radius: var(--radius) !important;
      background: rgba(255, 255, 255, .045) !important;
    }

    .accordion-button {
      color: var(--text) !important;
      font-weight: 950;
      background: rgba(255, 255, 255, .03) !important;
      box-shadow: none !important;
      padding: 18px 20px;
    }

    .accordion-button:not(.collapsed) {
      color: var(--gold) !important;
      border-bottom: 1px solid var(--line);
    }

    .accordion-button::after {
      filter: invert(1);
      opacity: .75;
    }

    .accordion-body {
      color: var(--muted);
      padding: 18px 20px 22px;
    }

    .cta-zone {
      position: relative;
      padding: 44px;
      border: 1px solid rgba(255, 211, 100, .34);
      border-radius: var(--radius);
      overflow: hidden;
      background:
        radial-gradient(circle at 80% 16%, rgba(255, 211, 100, .24), transparent 34%),
        linear-gradient(135deg, rgba(255, 211, 100, .12), rgba(255, 77, 61, .08)),
        #18150f;
      box-shadow: var(--shadow);
    }

    .cta-zone::before {
      content: "";
      position: absolute;
      inset: 16px;
      border: 1px solid rgba(255, 211, 100, .13);
      border-radius: 6px;
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
    }

    .cta-zone h2 {
      margin: 0;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.12;
      font-weight: 950;
    }

    .cta-zone p {
      margin: 14px 0 0;
      color: var(--soft);
      max-width: 680px;
    }

    .reminder-form {
      display: flex;
      gap: 10px;
      margin-top: 22px;
      max-width: 640px;
    }

    .form-control.custom-input {
      min-height: 48px;
      color: var(--text);
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(0, 0, 0, .24);
      box-shadow: none;
    }

    .form-control.custom-input::placeholder {
      color: rgba(217, 205, 183, .58);
    }

    .form-control.custom-input:focus {
      color: var(--text);
      border-color: rgba(255, 211, 100, .55);
      background: rgba(0, 0, 0, .32);
      box-shadow: 0 0 0 .25rem rgba(255, 211, 100, .12);
    }

    .form-hint {
      min-height: 22px;
      margin-top: 10px;
      color: var(--green);
      font-size: 13px;
      font-weight: 800;
    }

    .site-footer {
      padding: 46px 0 28px;
      border-top: 1px solid var(--line);
      background: #080806;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: start;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
      max-width: 460px;
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 12px;
      color: var(--muted);
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
    }

    .footer-links a:hover {
      color: var(--gold);
      border-color: rgba(255, 211, 100, .34);
      background: rgba(255, 211, 100, .08);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: 34px;
      padding-top: 22px;
      color: #827a70;
      border-top: 1px solid var(--line);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      :root {
        --section: 70px;
      }

      .nav-shell {
        flex-wrap: wrap;
        padding: 14px 0;
      }

      .chip-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
      }

      .chip-nav::-webkit-scrollbar {
        display: none;
      }

      .hero-grid,
      .hot-zone,
      .cta-content {
        grid-template-columns: 1fr;
      }

      .summary-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .card-grid,
      .tier-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-content > div:last-child {
        justify-self: start;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 24px, var(--container));
      }

      .brand {
        font-size: 15px;
      }

      .brand-mark {
        width: 34px;
        height: 34px;
      }

      .nav-cta {
        min-height: 38px;
        padding: 0 13px;
        font-size: 14px;
      }

      .hero-category {
        padding: 48px 0 42px;
      }

      .hero-copy {
        padding: 0;
      }

      .score-panel,
      .filter-inner,
      .cta-zone {
        padding: 18px;
      }

      .panel-top {
        align-items: center;
      }

      .count-ring {
        width: 92px;
        height: 92px;
        flex-basis: 92px;
      }

      .count-ring span {
        width: 66px;
        height: 66px;
        font-size: 20px;
      }

      .metric-grid,
      .summary-strip,
      .card-grid,
      .recommend-grid,
      .tier-grid {
        grid-template-columns: 1fr;
      }

      .filter-head,
      .entry-foot,
      .copyright {
        align-items: flex-start;
        flex-direction: column;
      }

      .time-row {
        grid-template-columns: 48px 1fr;
      }

      .time-row .btn-line {
        grid-column: 2;
        justify-self: start;
      }

      .reminder-form {
        flex-direction: column;
      }

      .reminder-form .btn-main {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      :root {
        --section: 58px;
      }

      h1 {
        font-size: 38px;
      }

      .section-title {
        font-size: 30px;
      }

      .hero-actions,
      .status-row {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-main,
      .btn-ghost {
        width: 100%;
      }

      .chip-nav a {
        padding: 0 13px;
      }

      .rank-list li {
        grid-template-columns: 36px 1fr;
      }

      .rank-list .badge-soft {
        grid-column: 2;
        justify-self: start;
      }
    }
