/* roulang page: index */
:root{
      --bg:#0f0d0c;
      --bg-2:#151311;
      --panel:#1b1815;
      --panel-2:#221d19;
      --panel-3:#171615;
      --text:#f5efe7;
      --muted:#b9afa5;
      --subtle:#81786f;
      --line:rgba(255,255,255,.09);
      --line-strong:rgba(255,255,255,.16);
      --accent:#ffb15c;
      --accent-2:#ff6f4e;
      --accent-3:#d8ff9a;
      --moss:#79856f;
      --shadow:0 24px 70px rgba(0,0,0,.42);
      --shadow-soft:0 14px 36px rgba(0,0,0,.28);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:12px;
      --container:1160px;
      --ease:all .28s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:PingFang SC,Microsoft YaHei,Noto Sans SC,Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 18% 8%, rgba(255,111,78,.22), transparent 30%),
        radial-gradient(circle at 82% 12%, rgba(255,177,92,.14), transparent 27%),
        linear-gradient(180deg,#100e0d 0%,#0c0b0a 58%,#11100f 100%);
      line-height:1.85;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--accent)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font-family:inherit}
    ::selection{background:rgba(255,177,92,.35);color:#fff}
    .container-rl{width:min(var(--container),calc(100% - 40px));margin-inline:auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(15,13,12,.84);
      border-bottom:1px solid var(--line);
      backdrop-filter:blur(14px);
    }
    .navbar{min-height:78px;padding:0}
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:.02em;
      color:var(--text);
      white-space:nowrap;
    }
    .brand-dot{
      width:34px;
      height:34px;
      border-radius:50%;
      background:
        linear-gradient(135deg,var(--accent),var(--accent-2));
      box-shadow:0 0 0 6px rgba(255,177,92,.08),0 14px 34px rgba(255,111,78,.22);
      position:relative;
    }
    .brand-dot::after{
      content:"";
      position:absolute;
      inset:10px;
      border-radius:50%;
      background:#15100d;
      border:1px solid rgba(255,255,255,.28);
    }
    .navbar-toggler{
      border:1px solid var(--line-strong);
      border-radius:14px;
      padding:9px 11px;
      color:var(--text);
      box-shadow:none!important;
    }
    .navbar-toggler-icon{
      width:22px;
      height:16px;
      background-image:none;
      position:relative;
      border-top:1px solid var(--text);
      border-bottom:1px solid var(--text);
    }
    .navbar-toggler-icon::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:7px;
      border-top:1px solid var(--text);
    }
    .nav-menu{
      display:flex;
      align-items:center;
      gap:32px;
      margin-left:auto;
    }
    .nav-link-rl{
      position:relative;
      color:var(--muted);
      font-size:15px;
      padding:26px 0;
      letter-spacing:.02em;
    }
    .nav-link-rl::after{
      content:"";
      position:absolute;
      left:0;
      right:100%;
      bottom:18px;
      height:2px;
      background:linear-gradient(90deg,var(--accent),var(--accent-2));
      border-radius:999px;
      transition:var(--ease);
    }
    .nav-link-rl:hover::after,
    .nav-link-rl.active::after{right:0}
    .nav-link-rl.active{color:var(--text)}
    main{position:relative}
    section{padding:88px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--accent);
      font-size:13px;
      letter-spacing:.12em;
      font-weight:700;
      margin-bottom:14px;
    }
    .section-kicker::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 18px rgba(255,177,92,.75);
    }
    .section-title{
      font-size:clamp(26px,3vw,40px);
      line-height:1.28;
      font-weight:800;
      margin:0 0 16px;
      letter-spacing:-.03em;
    }
    .section-desc{
      color:var(--muted);
      font-size:17px;
      max-width:760px;
      margin:0;
    }
    .hero{
      padding:64px 0 74px;
      min-height:calc(100vh - 78px);
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:72px 0 auto 0;
      height:1px;
      background:linear-gradient(90deg,transparent,var(--line-strong),transparent);
    }
    .hero-stage{
      width:min(1240px,calc(100% - 40px));
      margin-inline:auto;
      border:1px solid var(--line);
      border-radius:36px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.015)),
        radial-gradient(circle at 80% 18%,rgba(255,177,92,.18),transparent 30%),
        var(--panel);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-stage::after{
      content:"91 · 777";
      position:absolute;
      right:34px;
      bottom:-26px;
      font-size:112px;
      line-height:1;
      color:rgba(255,255,255,.035);
      font-weight:900;
      letter-spacing:-.08em;
      pointer-events:none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.03fr .97fr;
      min-height:600px;
    }
    .hero-copy{
      padding:64px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      border-right:1px solid var(--line);
    }
    .hero-eyebrow{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:22px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid var(--line-strong);
      border-radius:999px;
      background:rgba(255,255,255,.04);
      color:var(--muted);
      font-size:13px;
      line-height:1.2;
    }
    .pill.hot{
      color:#20130b;
      background:linear-gradient(135deg,var(--accent),#ffd59b);
      border-color:transparent;
      font-weight:800;
    }
    h1{
      font-size:clamp(34px,5.2vw,62px);
      line-height:1.16;
      letter-spacing:-.06em;
      font-weight:900;
      margin:0 0 22px;
    }
    .hero-lead{
      color:#d5cbc0;
      font-size:18px;
      line-height:1.9;
      margin:0 0 30px;
      max-width:660px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-bottom:28px;
    }
    .btn-rl{
      --bs-btn-padding-x:22px;
      --bs-btn-padding-y:13px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      letter-spacing:.01em;
      transition:var(--ease);
    }
    .btn-primary-rl{
      color:#25140a;
      background:linear-gradient(135deg,var(--accent),#ffd08a);
      box-shadow:0 12px 30px rgba(255,177,92,.24);
    }
    .btn-primary-rl:hover{
      transform:translateY(-2px);
      color:#1c1008;
      filter:brightness(1.06);
      box-shadow:0 18px 42px rgba(255,177,92,.34);
    }
    .btn-secondary-rl{
      color:var(--text);
      background:rgba(255,255,255,.035);
      border-color:var(--line-strong);
    }
    .btn-secondary-rl:hover{
      color:var(--accent);
      border-color:rgba(255,177,92,.6);
      background:rgba(255,177,92,.1);
      transform:translateY(-2px);
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      max-width:560px;
    }
    .metric{
      padding:16px;
      border-radius:18px;
      border:1px solid var(--line);
      background:rgba(0,0,0,.18);
    }
    .metric strong{
      display:block;
      font-size:23px;
      line-height:1.1;
      color:var(--accent);
      font-weight:900;
      margin-bottom:4px;
    }
    .metric span{font-size:13px;color:var(--muted)}
    .hero-board{
      padding:38px;
      display:grid;
      grid-template-columns:1fr 1fr;
      grid-auto-rows:minmax(150px,auto);
      gap:16px;
      align-content:center;
      background:
        linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px);
      background-size:24px 24px;
    }
    .entry-card{
      position:relative;
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:24px;
      padding:22px;
      min-height:158px;
      background:
        radial-gradient(circle at 80% 12%,rgba(255,177,92,.18),transparent 32%),
        linear-gradient(145deg,#231e1a,#151311);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
    }
    .entry-card:hover{
      transform:translateY(-5px);
      border-color:rgba(255,177,92,.36);
      box-shadow:0 22px 54px rgba(0,0,0,.38);
    }
    .entry-card.wide{grid-column:1/-1;min-height:172px}
    .entry-card.muted{
      background:
        radial-gradient(circle at 20% 20%,rgba(121,133,111,.2),transparent 34%),
        linear-gradient(145deg,#1c1b18,#131211);
    }
    .card-badge{
      display:inline-flex;
      padding:5px 9px;
      border-radius:999px;
      background:rgba(255,177,92,.12);
      color:var(--accent);
      border:1px solid rgba(255,177,92,.25);
      font-size:12px;
      margin-bottom:12px;
    }
    .entry-card h3{
      font-size:20px;
      font-weight:850;
      margin:0 0 8px;
      line-height:1.3;
    }
    .entry-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.72;
    }
    .entry-code{
      position:absolute;
      right:18px;
      bottom:12px;
      color:rgba(255,255,255,.08);
      font-size:44px;
      font-weight:900;
      letter-spacing:-.08em;
    }
    .status-strip{
      border-top:1px solid var(--line);
      padding:18px 64px;
      display:flex;
      gap:18px;
      align-items:center;
      justify-content:space-between;
      color:var(--muted);
      background:rgba(0,0,0,.16);
      position:relative;
      z-index:2;
    }
    .strip-progress{
      flex:1;
      height:6px;
      border-radius:999px;
      background:rgba(255,255,255,.07);
      overflow:hidden;
      min-width:160px;
    }
    .strip-progress span{
      display:block;
      height:100%;
      width:64%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--accent-2),var(--accent));
      box-shadow:0 0 22px rgba(255,177,92,.45);
    }
    .countdown-section{padding-top:96px}
    .count-card{
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      background:
        linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
        var(--panel);
      background-size:28px 28px;
      padding:30px;
      box-shadow:var(--shadow-soft);
      height:100%;
    }
    .time-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:28px;
    }
    .time-box{
      border-radius:22px;
      padding:22px 12px;
      text-align:center;
      background:rgba(0,0,0,.22);
      border:1px solid var(--line-strong);
    }
    .time-box strong{
      display:block;
      font-size:clamp(28px,4vw,52px);
      line-height:1;
      color:var(--accent);
      font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
      font-weight:900;
    }
    .time-box span{
      display:block;
      margin-top:10px;
      color:var(--muted);
      font-size:13px;
    }
    .mini-stack{display:grid;gap:16px;height:100%}
    .notice-card{
      border:1px solid var(--line);
      border-radius:24px;
      background:var(--panel-2);
      padding:23px;
      transition:var(--ease);
    }
    .notice-card:hover{border-color:rgba(255,177,92,.34);transform:translateY(-3px)}
    .notice-card h3{font-size:18px;margin:0 0 8px;font-weight:850}
    .notice-card p{margin:0;color:var(--muted);font-size:14px}
    .preview-flow{
      background:linear-gradient(180deg,rgba(255,255,255,.02),transparent);
    }
    .timeline-wrap{
      margin-top:38px;
      display:grid;
      gap:18px;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:170px 1fr;
      gap:22px;
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(255,255,255,.035);
      padding:22px;
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .timeline-item::before{
      content:"";
      position:absolute;
      left:178px;
      top:24px;
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--subtle);
      transition:var(--ease);
    }
    .timeline-item:hover{
      transform:translateX(6px);
      border-color:rgba(255,177,92,.32);
      background:rgba(255,255,255,.05);
    }
    .timeline-item:hover::before{
      background:var(--accent);
      box-shadow:0 0 20px rgba(255,177,92,.7);
    }
    .timeline-date{
      color:var(--accent);
      font-weight:900;
      letter-spacing:.04em;
      padding-top:2px;
    }
    .timeline-body{
      padding-left:22px;
      border-left:1px solid var(--line);
    }
    .timeline-head{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
      margin-bottom:8px;
    }
    .timeline-head h3{
      font-size:20px;
      margin:0;
      font-weight:850;
      line-height:1.35;
    }
    .badge-rl{
      flex:none;
      border-radius:999px;
      padding:5px 10px;
      font-size:12px;
      color:var(--accent-3);
      background:rgba(216,255,154,.08);
      border:1px solid rgba(216,255,154,.22);
      white-space:nowrap;
    }
    .timeline-body p{margin:0;color:var(--muted);font-size:15px}
    .subscribe-card{
      border:1px solid rgba(255,177,92,.2);
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 18% 20%,rgba(255,111,78,.14),transparent 34%),
        linear-gradient(135deg,#241c17,#171413 70%);
      box-shadow:var(--shadow);
      padding:34px;
      overflow:hidden;
      position:relative;
    }
    .subscribe-card::after{
      content:"";
      position:absolute;
      right:-80px;
      top:-80px;
      width:220px;
      height:220px;
      border-radius:50%;
      border:1px solid rgba(255,177,92,.22);
      box-shadow:inset 0 0 60px rgba(255,177,92,.08);
    }
    .form-panel{
      position:relative;
      z-index:2;
      border:1px solid var(--line);
      border-radius:24px;
      padding:22px;
      background:rgba(0,0,0,.22);
    }
    .form-label{color:#e8ded3;font-size:14px;margin-bottom:8px}
    .form-control,.form-select{
      border-radius:16px;
      border:1px solid var(--line-strong);
      background:#12100f;
      color:var(--text);
      min-height:48px;
      box-shadow:none!important;
    }
    .form-control::placeholder{color:#766d65}
    .form-control:focus,.form-select:focus{
      background:#141211;
      color:var(--text);
      border-color:rgba(255,177,92,.72);
      outline:0;
      box-shadow:0 0 0 4px rgba(255,177,92,.12)!important;
    }
    .form-hint{
      font-size:13px;
      color:var(--muted);
      margin-top:12px;
    }
    .form-alert{
      display:none;
      margin-top:12px;
      padding:11px 13px;
      border-radius:14px;
      background:rgba(216,255,154,.08);
      color:#dfffb3;
      border:1px solid rgba(216,255,154,.2);
      font-size:14px;
    }
    .entry-zone{padding-top:86px}
    .entry-layout{
      margin-top:34px;
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:20px;
    }
    .review-card,.current-card,.category-card{
      border:1px solid var(--line);
      border-radius:28px;
      padding:26px;
      background:var(--panel);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      position:relative;
      transition:var(--ease);
    }
    .review-card:hover,.current-card:hover,.category-card:hover{
      transform:translateY(-4px);
      border-color:rgba(255,177,92,.32);
    }
    .review-card{min-height:100%}
    .current-card{
      background:
        radial-gradient(circle at 84% 18%,rgba(255,177,92,.24),transparent 34%),
        linear-gradient(145deg,#2a201a,#171413);
      min-height:260px;
    }
    .category-card{
      margin-top:20px;
      background:
        radial-gradient(circle at 10% 16%,rgba(121,133,111,.18),transparent 36%),
        #171615;
    }
    .entry-title{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:16px;
      margin-bottom:14px;
    }
    .entry-title h3{font-size:24px;margin:0;font-weight:900}
    .entry-text{color:var(--muted);margin:0 0 18px}
    .link-arrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--accent);
      font-weight:850;
    }
    .link-arrow span{transition:var(--ease)}
    .link-arrow:hover span{transform:translateX(4px)}
    .info-loop{
      background:rgba(255,255,255,.018);
    }
    .news-board{
      margin-top:36px;
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:22px;
    }
    .news-list,.recommend-box{
      border:1px solid var(--line);
      border-radius:28px;
      background:var(--panel);
      padding:24px;
      box-shadow:var(--shadow-soft);
    }
    .news-link{
      display:grid;
      grid-template-columns:120px 1fr auto;
      gap:18px;
      align-items:center;
      padding:18px 0;
      border-bottom:1px solid var(--line);
    }
    .news-link:last-child{border-bottom:0}
    .news-link time{color:var(--accent);font-weight:850;font-size:14px}
    .news-link strong{
      display:block;
      font-size:18px;
      line-height:1.35;
      margin-bottom:4px;
      transition:var(--ease);
    }
    .news-link span{color:var(--muted);font-size:14px}
    .news-link:hover strong{color:var(--accent)}
    .news-link i{font-style:normal;color:var(--subtle);transition:var(--ease)}
    .news-link:hover i{color:var(--accent);transform:translateX(4px)}
    .recommend-item{
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.04);
      border:1px solid var(--line);
      margin-top:12px;
    }
    .recommend-item b{display:block;margin-bottom:6px}
    .recommend-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.7}
    .calendar-track{
      display:flex;
      gap:14px;
      overflow-x:auto;
      padding:36px 2px 8px;
      scrollbar-width:thin;
      scrollbar-color:rgba(255,177,92,.5) rgba(255,255,255,.06);
    }
    .calendar-card{
      min-width:250px;
      border:1px solid var(--line);
      border-radius:24px;
      padding:20px;
      background:linear-gradient(145deg,#1f1b18,#141211);
      transition:var(--ease);
    }
    .calendar-card:hover{transform:translateY(-4px);border-color:rgba(255,177,92,.34)}
    .calendar-card .day{
      color:var(--accent);
      font-weight:900;
      margin-bottom:12px;
    }
    .calendar-card h3{
      font-size:18px;
      line-height:1.35;
      font-weight:850;
      margin:0 0 8px;
    }
    .calendar-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.72}
    .voices-track{
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding:36px 2px 8px;
    }
    .voice-card{
      min-width:290px;
      border:1px solid var(--line);
      border-radius:26px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.055),rgba(255,255,255,.018)),
        var(--panel-3);
      padding:22px;
      transition:var(--ease);
    }
    .voice-card:hover{
      border-color:rgba(255,177,92,.34);
      transform:translateY(-4px);
    }
    .avatar-mark{
      width:48px;
      height:48px;
      border-radius:18px;
      display:grid;
      place-items:center;
      color:#25140a;
      font-weight:900;
      background:linear-gradient(135deg,var(--accent),#ffd79e);
      margin-bottom:14px;
    }
    .voice-card h3{font-size:18px;font-weight:850;margin:0 0 8px}
    .voice-card p{color:var(--muted);font-size:14px;line-height:1.75;margin:0}
    .compare-box{
      margin-top:34px;
      border:1px solid var(--line);
      border-radius:30px;
      overflow:hidden;
      background:var(--panel);
      box-shadow:var(--shadow-soft);
    }
    .compare-row{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      border-bottom:1px solid var(--line);
    }
    .compare-row:last-child{border-bottom:0}
    .compare-cell{
      padding:20px 22px;
      border-right:1px solid var(--line);
      color:var(--muted);
    }
    .compare-cell:last-child{border-right:0}
    .compare-row.head .compare-cell{
      color:var(--text);
      font-weight:900;
      background:rgba(255,177,92,.07);
    }
    .compare-cell.good{color:#f3e4d4}
    .faq-section{padding-bottom:96px}
    .accordion-rl{
      margin-top:34px;
      border:1px solid var(--line);
      border-radius:28px;
      overflow:hidden;
      background:var(--panel);
      box-shadow:var(--shadow-soft);
    }
    .accordion-item{
      background:transparent;
      color:var(--text);
      border:0;
      border-bottom:1px solid var(--line);
    }
    .accordion-item:last-child{border-bottom:0}
    .accordion-button{
      background:transparent!important;
      color:var(--text)!important;
      box-shadow:none!important;
      padding:22px 24px;
      font-weight:850;
      line-height:1.5;
    }
    .accordion-button::after{
      filter:invert(1) grayscale(1);
      opacity:.7;
    }
    .accordion-button:not(.collapsed){
      border-left:3px solid var(--accent);
      color:var(--accent)!important;
    }
    .accordion-body{
      color:var(--muted);
      padding:0 24px 24px 27px;
      line-height:1.85;
    }
    .final-cta{
      padding:0 0 92px;
    }
    .cta-box{
      border:1px solid rgba(255,177,92,.22);
      border-radius:34px;
      background:
        linear-gradient(135deg,rgba(255,177,92,.18),rgba(255,111,78,.08) 42%,rgba(255,255,255,.03)),
        var(--panel);
      padding:38px;
      display:flex;
      justify-content:space-between;
      gap:24px;
      align-items:center;
      box-shadow:var(--shadow);
    }
    .cta-box h2{
      font-size:clamp(24px,3vw,38px);
      margin:0 0 10px;
      font-weight:900;
      line-height:1.28;
    }
    .cta-box p{margin:0;color:var(--muted);max-width:720px}
    .site-footer{
      border-top:1px solid var(--line);
      background:#0c0b0a;
      padding:34px 0;
      color:var(--muted);
    }
    .footer-row{
      display:flex;
      justify-content:space-between;
      gap:24px;
      align-items:center;
      flex-wrap:wrap;
    }
    .footer-links{
      display:flex;
      gap:22px;
      flex-wrap:wrap;
      font-size:14px;
    }
    .copyright{
      width:100%;
      padding-top:18px;
      margin-top:18px;
      border-top:1px solid var(--line);
      font-size:13px;
      color:var(--subtle);
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .focus-ring:focus-visible,
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible{
      outline:2px solid rgba(255,177,92,.8);
      outline-offset:3px;
    }
    @media (max-width:1024px){
      .hero-grid{grid-template-columns:1fr}
      .hero-copy{border-right:0;border-bottom:1px solid var(--line);padding:48px}
      .hero-board{padding:30px}
      .entry-layout,.news-board{grid-template-columns:1fr}
      .compare-row{grid-template-columns:1fr}
      .compare-cell{border-right:0;border-bottom:1px solid var(--line)}
      .compare-cell:last-child{border-bottom:0}
    }
    @media (max-width:991px){
      .navbar-collapse{
        border-top:1px solid var(--line);
        padding:14px 0 18px;
      }
      .nav-menu{
        align-items:flex-start;
        gap:0;
        margin-left:0;
        width:100%;
      }
      .nav-link-rl{
        display:block;
        width:100%;
        padding:13px 0;
        border-bottom:1px solid rgba(255,255,255,.06);
      }
      .nav-link-rl::after{bottom:9px;width:42px;right:auto;opacity:0}
      .nav-link-rl:hover::after,.nav-link-rl.active::after{opacity:1}
    }
    @media (max-width:768px){
      .container-rl{width:min(100% - 28px,var(--container))}
      section{padding:56px 0}
      .hero{padding:28px 0 48px;min-height:auto}
      .hero-stage{width:calc(100% - 24px);border-radius:26px}
      .hero-copy{padding:32px 22px}
      .hero-lead{font-size:16px}
      .hero-actions{flex-direction:column;align-items:stretch}
      .btn-rl{width:100%}
      .hero-metrics{grid-template-columns:1fr}
      .hero-board{grid-template-columns:1fr;padding:20px}
      .entry-card.wide{grid-column:auto}
      .status-strip{padding:16px 22px;flex-direction:column;align-items:flex-start}
      .strip-progress{width:100%}
      .time-grid{grid-template-columns:1fr 1fr}
      .timeline-item{grid-template-columns:1fr;gap:10px}
      .timeline-item::before{left:22px;top:58px}
      .timeline-body{padding-left:18px}
      .timeline-head{flex-direction:column}
      .subscribe-card{padding:22px}
      .news-link{grid-template-columns:1fr;gap:6px}
      .cta-box{flex-direction:column;align-items:flex-start;padding:26px}
    }
    @media (max-width:520px){
      .navbar{min-height:64px}
      .brand-mark{font-size:15px}
      .brand-dot{width:30px;height:30px}
      .pill{font-size:12px}
      .time-box{padding:18px 8px}
      .entry-title{flex-direction:column}
      .calendar-card{min-width:82vw}
      .voice-card{min-width:82vw}
      .footer-row{align-items:flex-start}
      .footer-links{gap:14px}
    }

/* roulang page: category1 */
:root{
      --bg:#090908;
      --bg-2:#11100f;
      --panel:#171512;
      --panel-2:#201c18;
      --panel-3:#252018;
      --text:#f5efe6;
      --muted:#b7ada0;
      --soft:#7f766c;
      --line:rgba(255,255,255,.095);
      --line-strong:rgba(255,203,132,.34);
      --accent:#ffb35b;
      --accent-2:#ff765c;
      --accent-3:#d8f0a7;
      --shadow:0 22px 70px rgba(0,0,0,.42);
      --shadow-soft:0 14px 38px rgba(0,0,0,.28);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --container:1180px;
      --nav-h:78px;
      --ease:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 82% 10%, rgba(255,118,92,.18), transparent 32%),
        radial-gradient(circle at 18% 0%, rgba(255,179,91,.16), transparent 30%),
        linear-gradient(180deg,#0b0a09 0%,#090908 42%,#0f0d0b 100%);
      line-height:1.82;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--accent)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    .container-rl{
      width:min(100% - 40px,var(--container));
      margin-inline:auto;
    }
    .focus-ring:focus-visible,
    .btn-rl:focus-visible,
    .nav-link-rl:focus-visible,
    .form-control:focus-visible{
      outline:2px solid rgba(255,179,91,.72);
      outline-offset:4px;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(9,9,8,.86);
      border-bottom:1px solid var(--line);
      backdrop-filter:blur(14px);
    }
    .navbar{
      min-height:var(--nav-h);
      padding:0;
    }
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:12px;
      color:var(--text);
      font-weight:760;
      letter-spacing:.02em;
      white-space:nowrap;
    }
    .brand-dot{
      width:16px;
      height:16px;
      border-radius:50%;
      display:inline-block;
      background:linear-gradient(135deg,var(--accent),var(--accent-2));
      box-shadow:0 0 0 6px rgba(255,179,91,.1),0 0 24px rgba(255,118,92,.45);
      position:relative;
    }
    .brand-dot::after{
      content:"";
      position:absolute;
      inset:5px;
      border-radius:50%;
      background:#1a120c;
    }
    .navbar-toggler{
      border:1px solid var(--line);
      border-radius:14px;
      padding:9px 11px;
      box-shadow:none!important;
    }
    .navbar-toggler-icon{
      width:22px;
      height:22px;
      background-image:none;
      position:relative;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after{
      content:"";
      position:absolute;
      left:2px;
      right:2px;
      height:1.5px;
      background:var(--text);
      border-radius:99px;
    }
    .navbar-toggler-icon::before{top:7px}
    .navbar-toggler-icon::after{bottom:7px}
    .navbar-collapse{justify-content:flex-end}
    .nav-menu{
      margin-left:auto;
      display:flex;
      align-items:center;
      gap:34px;
    }
    .nav-link-rl{
      position:relative;
      display:inline-flex;
      align-items:center;
      min-height:var(--nav-h);
      color:var(--muted);
      font-size:15px;
      letter-spacing:.01em;
    }
    .nav-link-rl::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:18px;
      height:2px;
      border-radius:99px;
      background:linear-gradient(90deg,var(--accent),var(--accent-2));
      transform:scaleX(0);
      transform-origin:left;
      transition:var(--ease);
    }
    .nav-link-rl:hover::after,
    .nav-link-rl.active::after{transform:scaleX(1)}
    .nav-link-rl.active{color:var(--text)}
    main{position:relative}
    .section{
      padding:86px 0;
      position:relative;
    }
    .section-tight{padding:58px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--accent);
      font-size:13px;
      font-weight:700;
      letter-spacing:.08em;
      padding:8px 12px;
      border:1px solid rgba(255,179,91,.25);
      border-radius:999px;
      background:rgba(255,179,91,.08);
    }
    .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 16px rgba(255,179,91,.75);
    }
    .hero-inner{
      padding:54px 0 34px;
      border-bottom:1px solid var(--line);
    }
    .breadcrumb-rl{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:10px;
      color:var(--soft);
      font-size:14px;
      margin-bottom:24px;
    }
    .breadcrumb-rl a:hover{color:var(--accent)}
    .hero-title{
      font-size:clamp(34px,5vw,58px);
      line-height:1.16;
      letter-spacing:-.04em;
      margin:18px 0 18px;
      max-width:820px;
      font-weight:860;
    }
    .hero-summary{
      max-width:760px;
      color:var(--muted);
      font-size:18px;
      line-height:1.86;
      margin:0;
    }
    .hero-action-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:30px;
      align-items:center;
    }
    .btn-rl{
      border:0;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:48px;
      padding:12px 20px;
      border-radius:999px;
      font-weight:760;
      line-height:1;
      transition:var(--ease);
      cursor:pointer;
    }
    .btn-primary-rl{
      color:#1d1308;
      background:linear-gradient(135deg,var(--accent),#ffd18c 54%,var(--accent-2));
      box-shadow:0 12px 30px rgba(255,118,92,.23);
    }
    .btn-primary-rl:hover{
      color:#160d06;
      transform:translateY(-2px);
      box-shadow:0 18px 44px rgba(255,118,92,.34);
      filter:brightness(1.04);
    }
    .btn-secondary-rl{
      color:var(--text);
      background:rgba(255,255,255,.035);
      border:1px solid var(--line);
    }
    .btn-secondary-rl:hover{
      color:var(--accent);
      border-color:rgba(255,179,91,.48);
      background:rgba(255,179,91,.1);
      transform:translateY(-2px);
    }
    .guide-hero-grid{
      margin-top:44px;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:24px;
      align-items:stretch;
    }
    .coupon-main{
      position:relative;
      overflow:hidden;
      min-height:360px;
      border-radius:var(--radius-xl);
      border:1px solid rgba(255,203,132,.24);
      background:
        linear-gradient(135deg,rgba(255,179,91,.18),rgba(255,118,92,.08) 44%,rgba(255,255,255,.025)),
        var(--panel);
      box-shadow:var(--shadow);
      padding:32px;
    }
    .coupon-main::before{
      content:"91 777";
      position:absolute;
      right:-18px;
      bottom:-28px;
      font-size:128px;
      line-height:1;
      font-weight:900;
      letter-spacing:-.08em;
      color:rgba(255,255,255,.045);
      pointer-events:none;
    }
    .coupon-main::after{
      content:"";
      position:absolute;
      inset:18px;
      border-radius:26px;
      border:1px dashed rgba(255,219,160,.18);
      pointer-events:none;
    }
    .coupon-top{
      display:flex;
      justify-content:space-between;
      gap:18px;
      position:relative;
      z-index:1;
      margin-bottom:42px;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:999px;
      padding:7px 11px;
      border:1px solid var(--line);
      color:var(--muted);
      background:rgba(0,0,0,.18);
      font-size:13px;
      white-space:nowrap;
    }
    .status-pill.hot{
      color:#ffe4bb;
      border-color:rgba(255,179,91,.34);
      background:rgba(255,179,91,.1);
    }
    .status-dot{
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--accent-3);
      box-shadow:0 0 14px rgba(216,240,167,.55);
    }
    .coupon-code{
      position:relative;
      z-index:1;
      font-size:clamp(42px,7vw,82px);
      line-height:.95;
      font-weight:920;
      letter-spacing:-.07em;
      margin:0 0 22px;
    }
    .coupon-main p{
      position:relative;
      z-index:1;
      margin:0;
      color:var(--muted);
      max-width:560px;
    }
    .coupon-actions{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .coupon-wall{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .mini-ticket{
      min-height:172px;
      border-radius:var(--radius-lg);
      border:1px solid var(--line);
      background:
        radial-gradient(circle at 90% 10%, rgba(255,179,91,.16), transparent 35%),
        linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018)),
        var(--panel-2);
      padding:22px;
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .mini-ticket::after{
      content:"";
      position:absolute;
      width:82px;
      height:82px;
      right:-42px;
      bottom:-42px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(9,9,8,.5);
    }
    .mini-ticket:hover{
      transform:translateY(-4px);
      border-color:rgba(255,179,91,.28);
    }
    .mini-ticket h3{
      font-size:18px;
      line-height:1.35;
      margin:16px 0 9px;
      font-weight:780;
    }
    .mini-ticket p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:24px;
      margin-bottom:28px;
    }
    .section-head h2{
      font-size:clamp(26px,3.3vw,38px);
      line-height:1.28;
      margin:10px 0 0;
      letter-spacing:-.03em;
      font-weight:840;
    }
    .section-head p{
      max-width:610px;
      margin:0;
      color:var(--muted);
    }
    .tabs-wrap{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:8px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.028);
      border-radius:999px;
    }
    .tab-chip{
      border:0;
      border-radius:999px;
      background:transparent;
      color:var(--muted);
      padding:10px 15px;
      font-weight:700;
      font-size:14px;
      transition:var(--ease);
    }
    .tab-chip:hover,
    .tab-chip.active{
      color:#1a1008;
      background:var(--accent);
    }
    .content-grid{
      display:grid;
      grid-template-columns:minmax(0,1fr) 330px;
      gap:24px;
      align-items:start;
    }
    .stream-list{
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .stream-card{
      position:relative;
      display:grid;
      grid-template-columns:120px 1fr auto;
      gap:22px;
      align-items:center;
      padding:22px;
      border-radius:var(--radius-lg);
      border:1px solid var(--line);
      background:linear-gradient(135deg,rgba(255,255,255,.04),rgba(255,255,255,.016)),var(--panel);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      transition:var(--ease);
    }
    .stream-card::before{
      content:"";
      position:absolute;
      left:0;
      top:22px;
      bottom:22px;
      width:3px;
      border-radius:99px;
      background:rgba(255,255,255,.12);
      transition:var(--ease);
    }
    .stream-card:hover{
      transform:translateX(5px);
      border-color:rgba(255,179,91,.26);
    }
    .stream-card:hover::before{background:linear-gradient(180deg,var(--accent),var(--accent-2))}
    .stream-time{
      border-radius:18px;
      padding:18px 14px;
      text-align:center;
      background:#100f0e;
      border:1px solid var(--line);
      color:var(--muted);
    }
    .stream-time strong{
      display:block;
      color:var(--accent);
      font-size:28px;
      line-height:1;
      margin-bottom:8px;
      font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
    }
    .stream-card h3{
      margin:0 0 8px;
      font-size:21px;
      line-height:1.35;
      font-weight:800;
    }
    .stream-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .read-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--text);
      font-weight:760;
      white-space:nowrap;
    }
    .read-link span{transition:var(--ease)}
    .stream-card:hover .read-link span{transform:translateX(4px)}
    .side-panel{
      position:sticky;
      top:102px;
      border-radius:var(--radius-xl);
      border:1px solid var(--line);
      background:linear-gradient(180deg,rgba(255,179,91,.08),rgba(255,255,255,.025)),var(--panel-2);
      padding:24px;
      box-shadow:var(--shadow-soft);
    }
    .side-panel h3{
      margin:0 0 16px;
      font-size:20px;
      line-height:1.35;
      font-weight:820;
    }
    .status-box{
      padding:18px;
      border-radius:20px;
      background:rgba(0,0,0,.2);
      border:1px solid var(--line);
      margin-bottom:14px;
    }
    .status-box .label{
      color:var(--soft);
      font-size:13px;
      margin-bottom:6px;
    }
    .status-box .value{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--text);
      font-weight:800;
    }
    .side-links{
      display:grid;
      gap:10px;
      margin-top:18px;
    }
    .side-links a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      border-bottom:1px solid var(--line);
      color:var(--muted);
      padding:10px 0;
      font-size:14px;
    }
    .side-links a:hover{color:var(--accent);padding-left:4px}
    .countdown-card{
      border-radius:var(--radius-xl);
      border:1px solid var(--line);
      padding:30px;
      background:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
        var(--panel);
      background-size:28px 28px;
      box-shadow:var(--shadow);
    }
    .countdown-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:20px;
    }
    .time-unit{
      border-radius:20px;
      border:1px solid rgba(255,203,132,.18);
      background:rgba(0,0,0,.24);
      padding:18px 10px;
      text-align:center;
    }
    .time-unit strong{
      display:block;
      font-size:34px;
      line-height:1;
      color:var(--accent);
      font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
    }
    .time-unit span{
      display:block;
      margin-top:8px;
      color:var(--soft);
      font-size:13px;
    }
    .process-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .process-card{
      border-radius:var(--radius-lg);
      border:1px solid var(--line);
      background:var(--panel);
      padding:24px;
      transition:var(--ease);
    }
    .process-card:hover{
      transform:translateY(-4px);
      border-color:rgba(255,179,91,.26);
      box-shadow:var(--shadow-soft);
    }
    .process-num{
      width:38px;
      height:38px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:#1b1007;
      background:var(--accent);
      font-weight:900;
      margin-bottom:16px;
    }
    .process-card h3{
      font-size:18px;
      margin:0 0 8px;
      font-weight:800;
    }
    .process-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .notice-form{
      border-radius:var(--radius-xl);
      border:1px solid rgba(255,203,132,.18);
      background:
        radial-gradient(circle at 8% 20%,rgba(216,240,167,.1),transparent 28%),
        linear-gradient(135deg,rgba(255,179,91,.12),rgba(255,255,255,.025)),
        var(--panel-2);
      padding:30px;
      box-shadow:var(--shadow);
    }
    .form-control,.form-select{
      min-height:48px;
      border-radius:16px;
      border:1px solid var(--line);
      background:rgba(9,9,8,.62);
      color:var(--text);
      box-shadow:none!important;
    }
    .form-control::placeholder{color:rgba(183,173,160,.62)}
    .form-control:focus,.form-select:focus{
      background:rgba(9,9,8,.76);
      color:var(--text);
      border-color:rgba(255,179,91,.55);
      box-shadow:0 0 0 4px rgba(255,179,91,.12)!important;
    }
    .form-select option{background:#15120f;color:var(--text)}
    .form-hint{
      color:var(--soft);
      font-size:13px;
      margin-top:12px;
    }
    .cta-panel{
      border-radius:var(--radius-xl);
      border:1px solid rgba(255,203,132,.2);
      background:
        linear-gradient(120deg,rgba(255,118,92,.16),rgba(255,179,91,.14) 42%,rgba(255,255,255,.035)),
        var(--panel);
      padding:38px;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .cta-panel::after{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-90px;
      top:-100px;
      border-radius:50%;
      background:rgba(255,179,91,.12);
      filter:blur(4px);
    }
    .cta-panel h2{
      font-size:clamp(26px,3.2vw,38px);
      line-height:1.28;
      margin:0 0 12px;
      font-weight:850;
    }
    .cta-panel p{
      color:var(--muted);
      margin:0;
      max-width:680px;
    }
    .accordion{
      --bs-accordion-bg:transparent;
      --bs-accordion-border-color:transparent;
      display:grid;
      gap:12px;
    }
    .accordion-item{
      color:var(--text);
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:22px!important;
      overflow:hidden;
    }
    .accordion-button{
      color:var(--text);
      background:transparent;
      box-shadow:none!important;
      padding:20px 22px;
      font-weight:800;
      line-height:1.45;
    }
    .accordion-button:not(.collapsed){
      color:var(--accent);
      background:rgba(255,179,91,.06);
    }
    .accordion-button::after{
      filter:invert(1) grayscale(1);
      opacity:.72;
    }
    .accordion-body{
      color:var(--muted);
      padding:0 22px 22px;
      border-left:3px solid var(--accent);
      margin-left:22px;
      line-height:1.82;
    }
    .site-footer{
      padding:34px 0;
      border-top:1px solid var(--line);
      background:#080807;
      color:var(--soft);
    }
    .footer-row{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:22px 34px;
      align-items:center;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:18px;
      font-size:14px;
    }
    .footer-links a{color:var(--muted)}
    .footer-links a:hover{color:var(--accent)}
    .copyright{
      grid-column:1 / -1;
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:12px;
      padding-top:18px;
      border-top:1px solid var(--line);
      font-size:13px;
    }
    .copyright a{color:var(--muted);text-decoration:underline;text-underline-offset:3px}
    .copyright a:hover{color:var(--accent)}
    @media (max-width:1024px){
      .guide-hero-grid,
      .content-grid{grid-template-columns:1fr}
      .side-panel{position:relative;top:auto}
      .process-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991.98px){
      :root{--nav-h:64px}
      .navbar-collapse{
        margin-top:12px;
        border-top:1px solid var(--line);
        padding:10px 0 18px;
      }
      .nav-menu{
        margin-left:0;
        align-items:stretch;
        gap:0;
        flex-direction:column;
        width:100%;
      }
      .nav-link-rl{
        min-height:auto;
        padding:14px 0;
        border-bottom:1px solid rgba(255,255,255,.06);
      }
      .nav-link-rl::after{bottom:8px;right:auto;width:42px}
      .section{padding:62px 0}
      .section-head{display:block}
      .tabs-wrap{margin-top:18px;border-radius:22px}
      .coupon-wall{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      .container-rl{width:min(100% - 28px,var(--container))}
      .hero-inner{padding:38px 0 24px}
      .guide-hero-grid{margin-top:30px}
      .coupon-main{padding:24px;min-height:330px}
      .coupon-top{display:grid;justify-content:start;margin-bottom:32px}
      .coupon-wall{grid-template-columns:1fr}
      .stream-card{
        grid-template-columns:1fr;
        gap:14px;
      }
      .stream-time{
        display:flex;
        justify-content:space-between;
        align-items:center;
        text-align:left;
      }
      .read-link{justify-content:flex-start}
      .countdown-grid{grid-template-columns:repeat(2,1fr)}
      .footer-row{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
      .copyright{display:grid}
    }
    @media (max-width:520px){
      .hero-summary{font-size:16px}
      .hero-action-row,.coupon-actions{display:grid}
      .btn-rl{width:100%}
      .coupon-code{font-size:48px}
      .process-grid{grid-template-columns:1fr}
      .notice-form,.cta-panel,.countdown-card{padding:22px}
      .section{padding:50px 0}
      .tab-chip{width:calc(50% - 5px)}
    }
