/* roulang page: index */
:root{
      --bg-dark:#17110F;
      --bg-dark-2:#211714;
      --bg-light:#F8F1E8;
      --bg-soft:#FFF8F1;
      --primary:#D85B45;
      --primary-dark:#BF4936;
      --copper:#B98758;
      --apricot:#F1D8C9;
      --text:#2C2420;
      --muted:#7B6D65;
      --line:#E5D8CE;
      --white:#FFF8F1;
      --success:#6F8A6A;
      --danger:#B45B51;
      --shadow-card:0 18px 45px rgba(44,36,32,.08);
      --shadow-dark:0 20px 60px rgba(0,0,0,.28);
      --radius-lg:30px;
      --radius-md:22px;
      --radius-sm:16px;
      --container:1200px;
      --ease:180ms ease;
      --font:PingFang SC, Microsoft YaHei, Noto Sans SC, Helvetica Neue, Arial, sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:var(--bg-light);
      line-height:1.8;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:var(--primary);color:var(--white)}
    :focus-visible{outline:3px solid rgba(216,91,69,.45);outline-offset:3px;border-radius:12px}
    .container{width:min(calc(100% - 40px),var(--container));margin:0 auto}
    .narrow{max-width:820px}
    .age-strip{
      background:#120d0b;
      color:rgba(255,248,241,.82);
      font-size:13px;
      border-bottom:1px solid rgba(255,241,226,.12);
      position:relative;
      z-index:40;
    }
    .age-strip .container{
      min-height:36px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      text-align:center;
    }
    .age-dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(216,91,69,.16);
      flex:0 0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:35;
      background:rgba(23,17,15,.92);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(255,241,226,.14);
    }
    .nav{
      height:70px;
      display:grid;
      grid-template-columns:minmax(260px,1fr) auto minmax(260px,1fr);
      align-items:center;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      color:var(--white);
      font-weight:800;
      letter-spacing:.01em;
    }
    .brand-mark{
      width:38px;height:38px;border-radius:14px;
      background:linear-gradient(135deg,var(--primary),var(--copper));
      display:grid;place-items:center;
      box-shadow:0 10px 24px rgba(216,91,69,.22);
      flex:0 0 auto;
    }
    .brand-mark:before{
      content:"";
      width:14px;height:14px;border-radius:50%;
      border:3px solid rgba(255,248,241,.9);
      border-left-color:transparent;
    }
    .brand-text{
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
      max-width:330px;
      font-size:15px;
    }
    .brand-badge{
      color:var(--apricot);
      border:1px solid rgba(241,216,201,.34);
      border-radius:999px;
      padding:2px 8px;
      font-size:12px;
      font-weight:700;
      flex:0 0 auto;
    }
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
    }
    .nav-links a{
      color:rgba(255,248,241,.76);
      padding:9px 14px;
      border-radius:999px;
      font-size:15px;
      transition:background var(--ease), color var(--ease), transform var(--ease);
    }
    .nav-links a:hover,.nav-links a.active{
      background:rgba(255,248,241,.1);
      color:var(--white);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:12px;
    }
    .search{
      display:flex;
      align-items:center;
      gap:8px;
      height:42px;
      width:230px;
      border-radius:999px;
      padding:0 14px;
      background:rgba(255,248,241,.08);
      border:1px solid rgba(255,241,226,.16);
      color:rgba(255,248,241,.72);
    }
    .search input{
      width:100%;
      border:0;
      background:transparent;
      color:var(--white);
      outline:none;
      font-size:14px;
    }
    .search input::placeholder{color:rgba(255,248,241,.52)}
    .menu-toggle{
      display:none;
      width:44px;height:44px;
      border:1px solid rgba(255,241,226,.18);
      background:rgba(255,248,241,.08);
      color:var(--white);
      border-radius:14px;
    }
    .menu-toggle span{
      display:block;
      width:18px;
      height:2px;
      background:currentColor;
      margin:4px auto;
      border-radius:2px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      line-height:1.2;
      transition:transform var(--ease), background var(--ease), box-shadow var(--ease), border-color var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      background:var(--primary);
      color:var(--white);
      box-shadow:0 14px 30px rgba(216,91,69,.24);
    }
    .btn-primary:hover{background:var(--primary-dark);transform:translateY(-2px);box-shadow:0 18px 38px rgba(216,91,69,.3)}
    .btn-secondary{
      background:rgba(255,248,241,.08);
      border-color:rgba(255,241,226,.2);
      color:var(--white);
    }
    .btn-secondary:hover{background:rgba(241,216,201,.16);transform:translateY(-2px)}
    .btn-light{
      background:var(--bg-soft);
      color:var(--text);
      border-color:rgba(44,36,32,.12);
    }
    .btn-light:hover{background:var(--apricot);transform:translateY(-2px)}
    .btn-ghost{
      color:var(--text);
      border-color:transparent;
      padding-left:0;
      padding-right:0;
      min-height:auto;
    }
    .btn-ghost:hover{color:var(--primary);transform:translateX(4px)}
    .hero{
      background:
        radial-gradient(circle at 82% 24%, rgba(216,91,69,.18), transparent 28%),
        radial-gradient(circle at 16% 12%, rgba(185,135,88,.15), transparent 34%),
        linear-gradient(115deg,#17110F 0%,#1b1210 54%,#2b1a15 100%);
      color:var(--white);
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;inset:0;
      background:repeating-linear-gradient(90deg,rgba(255,248,241,.035) 0 1px,transparent 1px 74px);
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.8),transparent 78%);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns:.94fr 1.06fr;
      gap:56px;
      align-items:center;
      padding:84px 0 104px;
    }
    .eyebrow{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      color:rgba(255,248,241,.82);
      font-size:14px;
      margin-bottom:18px;
    }
    .tag,.badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:6px 11px;
      font-size:13px;
      line-height:1;
      font-weight:800;
    }
    .tag{
      color:var(--apricot);
      border:1px solid rgba(241,216,201,.24);
      background:rgba(255,248,241,.07);
    }
    .badge{
      color:var(--primary);
      background:var(--apricot);
    }
    .badge.dark{
      color:var(--white);
      background:rgba(216,91,69,.88);
      border:1px solid rgba(255,248,241,.18);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(36px,5.4vw,68px);
      line-height:1.1;
      margin-bottom:22px;
      letter-spacing:-.04em;
      max-width:740px;
    }
    .hero-sub{
      color:rgba(255,248,241,.78);
      font-size:18px;
      line-height:1.9;
      max-width:620px;
      margin-bottom:28px;
    }
    .hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin:30px 0 24px}
    .quick-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
    .quick-tags span{
      border:1px solid rgba(255,241,226,.16);
      background:rgba(255,248,241,.06);
      color:rgba(255,248,241,.74);
      border-radius:999px;
      padding:8px 12px;
      font-size:13px;
    }
    .poster-wrap{position:relative}
    .poster-card{
      position:relative;
      min-height:620px;
      border-radius:32px;
      overflow:hidden;
      border:1px solid rgba(255,241,226,.18);
      background:
        linear-gradient(150deg,rgba(255,248,241,.08),rgba(255,248,241,.02)),
        radial-gradient(circle at 62% 22%,rgba(216,91,69,.35),transparent 30%),
        linear-gradient(180deg,#37221c,#130d0b);
      box-shadow:var(--shadow-dark);
    }
    .poster-card:before{
      content:"";
      position:absolute;inset:28px;
      border-radius:26px;
      border:1px solid rgba(255,241,226,.14);
      background:
        linear-gradient(180deg,transparent 0%,rgba(0,0,0,.55) 100%),
        repeating-linear-gradient(135deg,rgba(255,248,241,.06) 0 2px,transparent 2px 16px);
    }
    .poster-light{
      position:absolute;
      width:270px;height:270px;
      border-radius:50%;
      right:38px;top:54px;
      background:radial-gradient(circle,rgba(241,216,201,.36),rgba(216,91,69,.13) 42%,transparent 70%);
      filter:blur(2px);
    }
    .poster-info{
      position:absolute;
      left:34px;right:34px;bottom:34px;
      border-radius:24px;
      background:rgba(23,17,15,.72);
      border:1px solid rgba(255,241,226,.18);
      padding:22px;
      backdrop-filter:blur(12px);
    }
    .poster-info h2{
      font-size:26px;
      line-height:1.28;
      margin:14px 0 8px;
      color:var(--white);
    }
    .poster-info p{
      color:rgba(255,248,241,.72);
      margin:0;
      line-height:1.75;
    }
    .status-row{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      color:rgba(255,248,241,.68);
      font-size:14px;
    }
    .countdown{
      position:absolute;
      right:-18px;
      top:54%;
      transform:translateY(-50%);
      width:300px;
      border-radius:28px;
      background:rgba(248,241,232,.94);
      color:var(--text);
      padding:18px;
      box-shadow:var(--shadow-dark);
      border:1px solid rgba(44,36,32,.08);
    }
    .countdown-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      font-weight:900;
      margin-bottom:14px;
    }
    .time-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
    .time-box{
      background:#fffaf4;
      border:1px solid rgba(44,36,32,.08);
      border-radius:16px;
      text-align:center;
      padding:10px 6px;
    }
    .time-num{display:block;color:var(--primary);font-size:25px;font-weight:900;line-height:1.1}
    .time-unit{display:block;color:var(--muted);font-size:12px;margin-top:4px}
    .floating-note{
      position:absolute;
      top:24px;left:-12px;
      background:rgba(216,91,69,.92);
      color:var(--white);
      border-radius:999px;
      padding:10px 15px;
      font-weight:900;
      box-shadow:0 16px 34px rgba(0,0,0,.25);
    }
    main{background:var(--bg-light)}
    section{padding:96px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:34px;
    }
    .section-kicker{
      color:var(--primary);
      font-weight:900;
      margin-bottom:8px;
      font-size:14px;
      letter-spacing:.08em;
    }
    h2{
      font-size:clamp(28px,3.6vw,44px);
      line-height:1.22;
      letter-spacing:-.03em;
      margin-bottom:0;
    }
    .section-desc{
      color:var(--muted);
      max-width:520px;
      margin:10px 0 0;
      line-height:1.85;
    }
    .timeline{
      display:grid;
      grid-template-columns:260px 1fr;
      gap:34px;
      align-items:start;
    }
    .date-rail{
      position:sticky;
      top:104px;
      border-radius:var(--radius-lg);
      padding:24px;
      background:var(--bg-soft);
      border:1px solid rgba(44,36,32,.1);
      box-shadow:var(--shadow-card);
    }
    .date-rail strong{font-size:34px;line-height:1;color:var(--primary);display:block;margin-bottom:10px}
    .date-rail p{color:var(--muted);margin:0 0 18px;line-height:1.75}
    .mini-stat{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      margin-top:18px;
    }
    .mini-stat div{
      border-radius:18px;
      background:#fffaf4;
      border:1px solid rgba(44,36,32,.08);
      padding:14px;
    }
    .mini-stat b{display:block;font-size:22px;color:var(--text);line-height:1.1}
    .mini-stat span{font-size:12px;color:var(--muted)}
    .flow-list{display:grid;gap:16px}
    .flow-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:18px;
      align-items:center;
      padding:20px;
      background:var(--bg-soft);
      border:1px solid rgba(44,36,32,.1);
      border-radius:24px;
      box-shadow:0 10px 28px rgba(44,36,32,.05);
      transition:transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }
    .flow-item:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-card);
      border-color:rgba(216,91,69,.24);
    }
    .flow-time{
      width:74px;height:74px;
      border-radius:22px;
      display:grid;place-items:center;
      background:linear-gradient(160deg,#fff8f1,var(--apricot));
      border:1px solid rgba(185,135,88,.22);
      color:var(--primary);
      font-weight:900;
      line-height:1.1;
      text-align:center;
    }
    .flow-time small{display:block;color:var(--muted);font-size:12px;font-weight:700;margin-top:4px}
    .flow-item h3{font-size:21px;margin:0 0 6px;line-height:1.32}
    .flow-item p{margin:0;color:var(--muted);line-height:1.75}
    .dark-section{
      background:
        radial-gradient(circle at 20% 20%,rgba(185,135,88,.18),transparent 28%),
        linear-gradient(180deg,#211714,#17110F);
      color:var(--white);
    }
    .dark-section .section-desc{color:rgba(255,248,241,.72)}
    .metrics{
      display:grid;
      grid-template-columns:1.3fr .7fr .7fr;
      gap:18px;
    }
    .metric-card{
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,241,226,.16);
      background:rgba(255,248,241,.06);
      padding:26px;
      box-shadow:0 20px 60px rgba(0,0,0,.16);
      min-height:190px;
      transition:transform var(--ease), background var(--ease);
    }
    .metric-card:hover{transform:translateY(-4px);background:rgba(255,248,241,.085)}
    .metric-card strong{display:block;font-size:44px;line-height:1;color:var(--primary);margin-bottom:14px}
    .metric-card h3{font-size:22px;margin:0 0 10px;color:var(--white)}
    .metric-card p{color:rgba(255,248,241,.72);margin:0;line-height:1.75}
    .subscribe{
      padding-top:0;
    }
    .subscribe-box{
      display:grid;
      grid-template-columns:1fr 1.1fr;
      gap:34px;
      align-items:center;
      border-radius:34px;
      padding:34px;
      background:linear-gradient(135deg,#fff8f1,#f3dfd1);
      border:1px solid rgba(44,36,32,.1);
      box-shadow:var(--shadow-card);
    }
    .subscribe-box h2{margin-bottom:12px}
    .subscribe-box p{color:var(--muted);margin:0;max-width:520px}
    .form-grid{
      display:grid;
      grid-template-columns:1fr 160px;
      gap:12px;
    }
    .input,select{
      height:54px;
      width:100%;
      border-radius:999px;
      border:1px solid rgba(44,36,32,.14);
      background:#fffaf4;
      color:var(--text);
      padding:0 18px;
      outline:none;
      transition:border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }
    .input:focus,select:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(216,91,69,.14);
      background:#fff;
    }
    .form-select{appearance:none}
    .form-feedback{
      display:none;
      margin-top:12px;
      border-radius:16px;
      padding:10px 14px;
      background:rgba(111,138,106,.12);
      color:#466343;
      font-weight:700;
      font-size:14px;
    }
    .replay-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:18px;
    }
    .replay-card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      border:1px solid rgba(44,36,32,.1);
      background:var(--bg-soft);
      box-shadow:var(--shadow-card);
      min-height:260px;
      transition:transform var(--ease), box-shadow var(--ease);
    }
    .replay-card:hover{transform:translateY(-4px);box-shadow:0 24px 58px rgba(44,36,32,.12)}
    .cover{
      height:180px;
      background:
        linear-gradient(180deg,transparent,rgba(23,17,15,.62)),
        radial-gradient(circle at 70% 30%,rgba(216,91,69,.32),transparent 30%),
        linear-gradient(135deg,#35211c,#19110f);
      position:relative;
      overflow:hidden;
    }
    .cover:after{
      content:"";
      position:absolute;inset:20px;
      border-radius:20px;
      border:1px solid rgba(255,248,241,.14);
      background:repeating-linear-gradient(135deg,rgba(255,248,241,.055) 0 2px,transparent 2px 18px);
      transform:scale(1);
      transition:transform var(--ease);
    }
    .replay-card:hover .cover:after{transform:scale(1.03)}
    .replay-body{padding:22px}
    .replay-body h3{font-size:24px;line-height:1.3;margin:12px 0 8px}
    .replay-body p{color:var(--muted);margin:0 0 16px;line-height:1.75}
    .small-stack{display:grid;gap:18px}
    .small-stack .replay-card{min-height:auto}
    .small-stack .cover{height:120px}
    .small-stack .replay-body h3{font-size:20px}
    .channel-strip{
      display:flex;
      gap:12px;
      overflow:auto;
      padding:8px 2px 14px;
      scrollbar-width:thin;
    }
    .channel-pill{
      flex:0 0 auto;
      min-width:220px;
      border-radius:24px;
      padding:20px;
      background:var(--bg-soft);
      border:1px solid rgba(44,36,32,.1);
      box-shadow:0 12px 30px rgba(44,36,32,.06);
      transition:transform var(--ease), border-color var(--ease);
    }
    .channel-pill:hover{transform:translateY(-4px);border-color:rgba(216,91,69,.24)}
    .channel-pill h3{font-size:20px;margin:12px 0 6px}
    .channel-pill p{margin:0;color:var(--muted);font-size:14px;line-height:1.7}
    .trust-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .trust-card{
      border-radius:var(--radius-md);
      background:rgba(255,248,241,.06);
      border:1px solid rgba(255,241,226,.16);
      padding:24px;
    }
    .trust-card h3{font-size:21px;margin:12px 0 8px;color:var(--white)}
    .trust-card p{margin:0;color:rgba(255,248,241,.72);line-height:1.75}
    .faq-list{display:grid;gap:12px;max-width:900px;margin:0 auto}
    .faq-item{
      border-radius:22px;
      background:var(--bg-soft);
      border:1px solid rgba(44,36,32,.1);
      overflow:hidden;
      box-shadow:0 10px 26px rgba(44,36,32,.05);
    }
    .faq-q{
      width:100%;
      min-height:60px;
      padding:18px 22px;
      border:0;
      background:transparent;
      color:var(--text);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      text-align:left;
      font-weight:900;
      font-size:17px;
    }
    .faq-q .plus{
      width:28px;height:28px;
      border-radius:50%;
      background:var(--apricot);
      display:grid;place-items:center;
      color:var(--primary);
      flex:0 0 auto;
      transition:transform var(--ease);
    }
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition:max-height 220ms ease;
    }
    .faq-a p{
      padding:0 22px 20px;
      margin:0;
      color:var(--muted);
      line-height:1.85;
    }
    .faq-item.open .faq-a{max-height:220px}
    .faq-item.open .plus{transform:rotate(45deg)}
    .final-cta{
      padding:0 0 96px;
      background:var(--bg-light);
    }
    .cta-box{
      border-radius:34px;
      padding:40px;
      color:var(--white);
      background:
        radial-gradient(circle at 80% 20%,rgba(216,91,69,.25),transparent 30%),
        linear-gradient(135deg,#211714,#17110F);
      border:1px solid rgba(255,241,226,.12);
      box-shadow:var(--shadow-dark);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:28px;
    }
    .cta-box h2{font-size:clamp(26px,3.2vw,40px);margin-bottom:10px}
    .cta-box p{margin:0;color:rgba(255,248,241,.72);max-width:610px}
    .site-footer{
      background:#120d0b;
      color:rgba(255,248,241,.72);
      padding:56px 0 28px;
      border-top:1px solid rgba(255,241,226,.12);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:34px;
      margin-bottom:34px;
    }
    .footer-title{
      color:var(--white);
      font-weight:900;
      margin-bottom:12px;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .footer-title .brand-mark{width:32px;height:32px;border-radius:12px}
    .footer-title .brand-mark:before{width:11px;height:11px;border-width:2px}
    .footer-col p{margin:0;color:rgba(255,248,241,.66);line-height:1.85}
    .footer-links{display:grid;gap:10px}
    .footer-links a{
      color:rgba(255,248,241,.7);
      transition:color var(--ease), transform var(--ease);
    }
    .footer-links a:hover{color:var(--apricot);transform:translateX(3px)}
    .copyright{
      padding-top:22px;
      border-top:1px solid rgba(255,241,226,.1);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      font-size:13px;
      color:rgba(255,248,241,.55);
    }
    .mobile-sticky{
      display:none;
      position:fixed;
      left:14px;right:14px;bottom:14px;
      z-index:50;
      padding:10px;
      border-radius:22px;
      background:rgba(23,17,15,.92);
      border:1px solid rgba(255,241,226,.16);
      box-shadow:0 20px 50px rgba(0,0,0,.28);
      backdrop-filter:blur(14px);
      grid-template-columns:1fr 1fr 1fr;
      gap:8px;
    }
    .mobile-sticky a,.mobile-sticky button{
      border:0;
      border-radius:16px;
      background:rgba(255,248,241,.08);
      color:var(--white);
      padding:10px 8px;
      font-size:13px;
      text-align:center;
    }
    @media (max-width:1100px){
      .nav{grid-template-columns:1fr auto;gap:14px}
      .nav-links{display:none}
      .menu-toggle{display:block}
      .hero-inner{grid-template-columns:1fr;gap:36px;padding:64px 0 84px}
      .poster-card{min-height:520px}
      .countdown{right:22px;top:auto;bottom:28px;transform:none}
      .timeline{grid-template-columns:1fr}
      .date-rail{position:relative;top:auto}
      .metrics,.trust-grid{grid-template-columns:1fr 1fr}
      .subscribe-box,.replay-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      .container{width:min(calc(100% - 28px),var(--container))}
      .age-strip .container{justify-content:flex-start;text-align:left}
      .nav{height:64px}
      .brand-text{max-width:190px;font-size:14px}
      .brand-badge,.search{display:none}
      .nav-actions .btn{display:none}
      .hero-inner{padding:46px 0 70px}
      .hero-cta{flex-direction:column}
      .hero-cta .btn{width:100%}
      .poster-card{min-height:460px;border-radius:26px}
      .poster-info{left:18px;right:18px;bottom:18px;padding:18px}
      .poster-info h2{font-size:22px}
      .countdown{position:relative;left:auto;right:auto;bottom:auto;top:auto;transform:none;width:100%;margin-top:16px}
      .floating-note{left:18px;top:18px}
      section{padding:68px 0}
      .section-head{display:block}
      .section-desc{max-width:none}
      .flow-item{grid-template-columns:1fr;align-items:start}
      .flow-time{width:100%;height:auto;min-height:64px}
      .metrics,.trust-grid{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .subscribe-box,.cta-box{padding:24px;border-radius:26px}
      .cta-box{display:block}
      .cta-box .btn{margin-top:22px;width:100%}
      .footer-grid{grid-template-columns:1fr}
      .mobile-sticky{display:grid}
      body{padding-bottom:72px}
      .site-header.menu-open .nav-links{
        display:flex;
        position:fixed;
        inset:100px 14px auto 14px;
        flex-direction:column;
        align-items:stretch;
        padding:18px;
        border-radius:24px;
        background:#17110F;
        border:1px solid rgba(255,241,226,.16);
        box-shadow:var(--shadow-dark);
      }
      .site-header.menu-open .nav-links a{
        padding:16px 18px;
        font-size:18px;
      }
    }
    @media (max-width:520px){
      h1{font-size:36px}
      .poster-card{min-height:420px}
      .time-num{font-size:22px}
      .status-row{display:block}
      .status-row .badge{margin-top:10px}
      .replay-body h3{font-size:21px}
      .copyright{display:block}
    }

/* roulang page: category1 */
:root{
      --bg-dark:#17110F;
      --bg-dark-2:#211816;
      --bg-light:#F8F1E8;
      --bg-soft:#FFF8F0;
      --primary:#D85B45;
      --primary-dark:#BF4936;
      --copper:#B98758;
      --apricot:#F1D8C9;
      --text:#2C2420;
      --muted:#7B6D65;
      --line:#E5D8CE;
      --line-dark:rgba(255,241,226,.16);
      --white:#fffaf4;
      --success:#6F8A6A;
      --danger:#B94D45;
      --shadow:0 18px 45px rgba(44,36,32,.08);
      --shadow-dark:0 20px 60px rgba(0,0,0,.28);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --container:1220px;
      --transition:210ms ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      color:var(--text);
      background:var(--bg-light);
      line-height:1.78;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:var(--primary);color:var(--white)}
    :focus-visible{
      outline:3px solid rgba(216,91,69,.45);
      outline-offset:3px;
      border-radius:12px;
    }

    .container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }

    .age-strip{
      background:#100b0a;
      color:#ead8ca;
      border-bottom:1px solid var(--line-dark);
      font-size:13px;
      line-height:1.5;
    }
    .age-strip .container{
      min-height:36px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .age-strip strong{color:var(--apricot);font-weight:700}
    .age-strip span:last-child{color:#bda89a}

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(23,17,15,.92);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,241,226,.12);
      transition:background var(--transition), box-shadow var(--transition);
    }
    .site-header.is-scrolled{
      background:rgba(23,17,15,.98);
      box-shadow:0 12px 34px rgba(0,0,0,.22);
    }
    .nav{
      height:70px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
      color:var(--white);
      font-weight:800;
      letter-spacing:.01em;
    }
    .brand-mark{
      width:30px;
      height:30px;
      flex:0 0 30px;
      border-radius:12px;
      background:
        radial-gradient(circle at 68% 30%, #ffd6c3 0 12%, transparent 13%),
        linear-gradient(135deg,var(--primary),var(--copper));
      box-shadow:0 10px 25px rgba(216,91,69,.28);
      position:relative;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:8px 7px;
      border:1px solid rgba(255,250,244,.74);
      border-radius:8px;
    }
    .brand-text{
      max-width:330px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
      font-size:15px;
    }
    .brand-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:38px;
      height:24px;
      padding:0 8px;
      border-radius:999px;
      color:#ffe9df;
      background:rgba(216,91,69,.18);
      border:1px solid rgba(216,91,69,.42);
      font-size:12px;
      font-weight:800;
    }
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      margin-left:auto;
    }
    .nav-links a{
      color:#e7d6c8;
      font-size:14px;
      font-weight:700;
      padding:10px 14px;
      border-radius:999px;
      transition:background var(--transition), color var(--transition), transform var(--transition);
    }
    .nav-links a:hover{
      background:rgba(255,241,226,.10);
      color:var(--white);
      transform:translateY(-1px);
    }
    .nav-links a.active{
      background:var(--apricot);
      color:var(--text);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .search{
      height:42px;
      width:248px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 14px;
      border:1px solid rgba(255,241,226,.18);
      border-radius:999px;
      background:rgba(255,241,226,.08);
      color:#dbc8ba;
      transition:border-color var(--transition), background var(--transition);
    }
    .search:focus-within{
      border-color:rgba(216,91,69,.78);
      background:rgba(255,241,226,.12);
    }
    .search input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--white);
      font-size:14px;
    }
    .search input::placeholder{color:#a99587}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      font-size:14px;
      line-height:1;
      transition:background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition), color var(--transition);
      white-space:nowrap;
    }
    .btn:after{
      content:"›";
      font-size:18px;
      line-height:1;
      transition:transform var(--transition);
    }
    .btn:hover:after{transform:translateX(3px)}
    .btn-primary{
      background:var(--primary);
      color:var(--white);
      box-shadow:0 14px 28px rgba(216,91,69,.24);
    }
    .btn-primary:hover{
      background:var(--primary-dark);
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(216,91,69,.32);
    }
    .btn-secondary{
      background:rgba(248,241,232,.72);
      color:var(--text);
      border-color:rgba(44,36,32,.12);
    }
    .btn-secondary:hover{
      background:var(--apricot);
      transform:translateY(-2px);
    }
    .btn-ghost{
      min-height:auto;
      padding:0;
      border:0;
      border-radius:0;
      color:var(--primary-dark);
      background:transparent;
      box-shadow:none;
    }
    .btn-ghost:hover{
      color:var(--primary);
      transform:none;
    }
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:50%;
      border:1px solid rgba(255,241,226,.18);
      background:rgba(255,241,226,.08);
      padding:0;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
    }
    .menu-toggle span{
      width:18px;
      height:2px;
      border-radius:2px;
      background:var(--white);
      transition:transform var(--transition), opacity var(--transition);
    }
    .menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
    .menu-toggle.is-open span:nth-child(2){opacity:0}
    .menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

    .channel-head{
      position:relative;
      overflow:hidden;
      color:var(--white);
      background:
        radial-gradient(circle at 82% 24%, rgba(216,91,69,.25), transparent 34%),
        linear-gradient(145deg,#17110F 0%,#241816 60%,#17110F 100%);
      padding:58px 0 74px;
      border-bottom:1px solid rgba(255,241,226,.12);
    }
    .channel-head:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(255,241,226,.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,241,226,.04) 1px, transparent 1px);
      background-size:64px 64px;
      opacity:.35;
      pointer-events:none;
    }
    .channel-grid{
      position:relative;
      display:grid;
      grid-template-columns:minmax(0,1fr) 360px;
      gap:44px;
      align-items:center;
    }
    .breadcrumb{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:18px;
      color:#cbb6a8;
      font-size:14px;
    }
    .breadcrumb a{
      border-bottom:1px solid transparent;
      transition:color var(--transition), border-color var(--transition);
    }
    .breadcrumb a:hover{
      color:var(--white);
      border-color:rgba(255,241,226,.55);
    }
    .breadcrumb .sep{color:#8d7668}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      padding:7px 12px;
      border:1px solid rgba(255,241,226,.16);
      border-radius:999px;
      background:rgba(255,241,226,.08);
      color:#f4d8c8;
      font-size:13px;
      font-weight:800;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(216,91,69,.14);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      max-width:760px;
      margin-bottom:18px;
      font-size:clamp(36px,5.2vw,64px);
      line-height:1.08;
      letter-spacing:-.045em;
    }
    .head-copy{
      max-width:760px;
      margin-bottom:0;
      color:#dfccbe;
      font-size:18px;
      line-height:1.85;
    }
    .status-panel{
      border:1px solid rgba(255,241,226,.18);
      border-radius:var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(255,241,226,.12), rgba(255,241,226,.06));
      box-shadow:var(--shadow-dark);
      padding:22px;
    }
    .status-panel-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:18px;
    }
    .status-title{
      font-size:18px;
      font-weight:900;
      color:var(--white);
    }
    .badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      line-height:1;
      white-space:nowrap;
    }
    .badge-hot{background:rgba(216,91,69,.18);color:#ffd6c8;border:1px solid rgba(216,91,69,.34)}
    .badge-soft{background:var(--apricot);color:var(--primary-dark)}
    .badge-dark{background:rgba(23,17,15,.78);color:#ffe5d9;border:1px solid rgba(255,241,226,.18)}
    .badge-muted{background:#F6E7DC;color:#7b5948;border:1px solid rgba(44,36,32,.08)}
    .mini-countdown{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
      margin-bottom:18px;
    }
    .time-cell{
      min-height:76px;
      border-radius:18px;
      background:rgba(248,241,232,.12);
      border:1px solid rgba(255,241,226,.14);
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
    }
    .time-cell strong{
      color:#ff8b73;
      font-size:26px;
      line-height:1;
      letter-spacing:-.02em;
    }
    .time-cell span{
      margin-top:8px;
      color:#cdb7a8;
      font-size:12px;
    }
    .panel-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
      color:#ddc7b9;
      font-size:14px;
    }
    .panel-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 0;
      border-top:1px solid rgba(255,241,226,.10);
    }
    .panel-list li:before{
      content:"";
      width:8px;
      height:8px;
      margin-top:9px;
      border-radius:50%;
      background:var(--copper);
      flex:0 0 8px;
    }

    main{background:var(--bg-light)}
    .section{padding:88px 0}
    .section.alt{background:var(--bg-soft)}
    .section.dark{
      background:var(--bg-dark);
      color:var(--white);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary-dark);
      font-size:13px;
      font-weight:900;
      letter-spacing:.04em;
      margin-bottom:10px;
    }
    .section-kicker:before{
      content:"";
      width:18px;
      height:2px;
      border-radius:2px;
      background:var(--primary);
    }
    h2{
      margin-bottom:0;
      font-size:clamp(28px,3.6vw,44px);
      line-height:1.22;
      letter-spacing:-.035em;
    }
    .section-desc{
      max-width:560px;
      margin:0;
      color:var(--muted);
      font-size:16px;
      line-height:1.85;
    }
    .dark .section-desc{color:#d4c0b2}

    .filter-shell{
      display:grid;
      grid-template-columns:280px minmax(0,1fr);
      gap:24px;
      align-items:start;
    }
    .filter-card,
    .content-card{
      border:1px solid rgba(44,36,32,.10);
      border-radius:var(--radius-lg);
      background:rgba(255,250,244,.72);
      box-shadow:var(--shadow);
    }
    .filter-card{
      position:sticky;
      top:94px;
      padding:20px;
    }
    .filter-group + .filter-group{
      margin-top:22px;
      padding-top:20px;
      border-top:1px solid var(--line);
    }
    .filter-label{
      margin-bottom:12px;
      color:var(--text);
      font-weight:900;
      font-size:15px;
    }
    .filter-options{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .filter-btn{
      border:1px solid rgba(44,36,32,.10);
      background:#fff8f1;
      color:var(--muted);
      border-radius:999px;
      padding:9px 13px;
      font-size:13px;
      font-weight:800;
      transition:background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    }
    .filter-btn:hover{
      background:var(--apricot);
      color:var(--text);
      transform:translateY(-1px);
    }
    .filter-btn.active{
      background:var(--primary);
      color:var(--white);
      border-color:var(--primary);
    }
    .side-search{
      display:flex;
      height:50px;
      align-items:center;
      gap:10px;
      padding:0 14px;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fffaf4;
    }
    .side-search input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--text);
    }
    .side-note{
      margin-top:18px;
      padding:16px;
      border-radius:18px;
      background:#f5e4d8;
      color:#66564d;
      font-size:13px;
      line-height:1.7;
    }

    .list-area{
      display:grid;
      gap:18px;
    }
    .featured-card{
      overflow:hidden;
      display:grid;
      grid-template-columns:42% minmax(0,1fr);
      border:1px solid rgba(44,36,32,.10);
      border-radius:var(--radius-xl);
      background:#fffaf4;
      box-shadow:var(--shadow);
    }
    .cover{
      position:relative;
      overflow:hidden;
      min-height:280px;
      background:
        radial-gradient(circle at 28% 24%, rgba(216,91,69,.44), transparent 28%),
        radial-gradient(circle at 78% 68%, rgba(185,135,88,.34), transparent 30%),
        linear-gradient(135deg,#2a1c19,#17110f 64%,#3a211b);
    }
    .cover:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg, transparent 0 35%, rgba(255,241,226,.10) 36% 37%, transparent 38%),
        repeating-linear-gradient(90deg, rgba(255,241,226,.04) 0 1px, transparent 1px 18px);
      opacity:.8;
    }
    .cover:after{
      content:"直播预告封面";
      position:absolute;
      left:20px;
      bottom:20px;
      color:#f8e8dc;
      font-weight:900;
      letter-spacing:.08em;
      font-size:13px;
    }
    .cover .badge{
      position:absolute;
      top:18px;
      left:18px;
      z-index:2;
    }
    .featured-body{
      padding:30px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-bottom:14px;
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }
    .featured-body h3,
    .preview-card h3{
      margin-bottom:10px;
      color:var(--text);
      font-size:24px;
      line-height:1.32;
      letter-spacing:-.02em;
    }
    .featured-body p,
    .preview-card p{
      margin-bottom:18px;
      color:var(--muted);
      line-height:1.75;
    }
    .inline-count{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:4px 0 22px;
    }
    .inline-count span{
      display:inline-flex;
      align-items:center;
      gap:5px;
      padding:8px 10px;
      border-radius:12px;
      background:#F6E7DC;
      color:var(--text);
      font-size:13px;
      font-weight:900;
    }
    .inline-count strong{color:var(--primary-dark)}

    .preview-card{
      display:grid;
      grid-template-columns:246px minmax(0,1fr) 150px;
      gap:22px;
      align-items:center;
      padding:16px;
      border:1px solid rgba(44,36,32,.10);
      border-radius:var(--radius-lg);
      background:#fffaf4;
      box-shadow:0 12px 30px rgba(44,36,32,.055);
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .preview-card:hover{
      transform:translateY(-4px);
      box-shadow:0 18px 42px rgba(44,36,32,.095);
      border-color:rgba(216,91,69,.22);
    }
    .preview-thumb{
      position:relative;
      overflow:hidden;
      height:150px;
      border-radius:20px;
      background:
        radial-gradient(circle at 30% 35%, rgba(241,216,201,.16), transparent 24%),
        linear-gradient(135deg,#3b2923,#17110f 58%,#7a3c31);
    }
    .preview-thumb:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg, rgba(255,241,226,.16), transparent 45%);
      transform:scale(1.02);
      transition:transform var(--transition);
    }
    .preview-card:hover .preview-thumb:before{transform:scale(1.08)}
    .preview-thumb .badge{
      position:absolute;
      top:12px;
      left:12px;
      z-index:2;
    }
    .preview-info{
      min-width:0;
    }
    .preview-info p{
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .preview-action{
      display:grid;
      gap:12px;
      justify-items:end;
      color:var(--muted);
      font-size:13px;
    }
    .mini-meter{
      width:100%;
      height:8px;
      border-radius:999px;
      background:#F1E1D6;
      overflow:hidden;
    }
    .mini-meter i{
      display:block;
      height:100%;
      width:64%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--copper));
    }

    .pagination{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      margin-top:18px;
    }
    .page-btn{
      min-width:42px;
      height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(44,36,32,.12);
      border-radius:14px;
      background:#fffaf4;
      color:var(--text);
      font-weight:900;
      transition:background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
    }
    .page-btn:hover{
      background:var(--apricot);
      border-color:rgba(216,91,69,.26);
      transform:translateY(-1px);
    }
    .page-btn.current{
      background:var(--primary);
      border-color:var(--primary);
      color:var(--white);
    }

    .metrics-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .metric-card{
      padding:22px;
      border:1px solid rgba(255,241,226,.15);
      border-radius:var(--radius-lg);
      background:linear-gradient(180deg, rgba(255,241,226,.10), rgba(255,241,226,.055));
      box-shadow:var(--shadow-dark);
    }
    .metric-card strong{
      display:block;
      margin-bottom:6px;
      color:#ff8b73;
      font-size:34px;
      line-height:1;
      letter-spacing:-.04em;
    }
    .metric-card span{
      color:#dcc7b9;
      font-size:14px;
    }

    .process-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .process-card{
      position:relative;
      padding:24px;
      border:1px solid rgba(44,36,32,.10);
      border-radius:var(--radius-lg);
      background:#fffaf4;
      box-shadow:var(--shadow);
    }
    .process-num{
      width:42px;
      height:42px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:16px;
      border-radius:16px;
      background:var(--bg-dark);
      color:#ffd8ca;
      font-weight:900;
    }
    .process-card h3{
      margin-bottom:8px;
      font-size:20px;
      line-height:1.35;
    }
    .process-card p{
      margin-bottom:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }

    .subscribe-panel{
      display:grid;
      grid-template-columns:minmax(0,1fr) 480px;
      gap:32px;
      align-items:center;
      padding:34px;
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 84% 18%, rgba(216,91,69,.18), transparent 28%),
        #fffaf4;
      border:1px solid rgba(44,36,32,.10);
      box-shadow:var(--shadow);
    }
    .subscribe-panel h2{margin-bottom:12px}
    .subscribe-panel p{
      margin-bottom:0;
      color:var(--muted);
      max-width:620px;
    }
    .subscribe-form{
      display:grid;
      gap:12px;
    }
    .form-row{
      display:grid;
      grid-template-columns:minmax(0,1fr) 150px;
      gap:10px;
    }
    .subscribe-form input,
    .subscribe-form select{
      width:100%;
      height:52px;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff8f1;
      color:var(--text);
      padding:0 14px;
      outline:0;
      transition:border-color var(--transition), box-shadow var(--transition);
    }
    .subscribe-form input:focus,
    .subscribe-form select:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(216,91,69,.12);
    }
    .form-feedback{
      display:none;
      padding:11px 14px;
      border-radius:14px;
      background:rgba(111,138,106,.13);
      color:#516a4d;
      font-size:14px;
      font-weight:800;
    }
    .form-feedback.show{display:block}

    .faq-wrap{
      max-width:900px;
      margin:0 auto;
      display:grid;
      gap:12px;
    }
    .faq-item{
      border:1px solid rgba(44,36,32,.10);
      border-radius:20px;
      background:#fffaf4;
      box-shadow:0 10px 26px rgba(44,36,32,.05);
      overflow:hidden;
    }
    .faq-question{
      width:100%;
      min-height:60px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px 20px;
      border:0;
      background:transparent;
      color:var(--text);
      text-align:left;
      font-weight:900;
    }
    .faq-question .plus{
      width:26px;
      height:26px;
      flex:0 0 26px;
      border-radius:50%;
      background:var(--apricot);
      position:relative;
      transition:transform var(--transition), background var(--transition);
    }
    .faq-question .plus:before,
    .faq-question .plus:after{
      content:"";
      position:absolute;
      left:7px;
      right:7px;
      top:12px;
      height:2px;
      border-radius:2px;
      background:var(--primary-dark);
    }
    .faq-question .plus:after{transform:rotate(90deg)}
    .faq-item.open .plus{
      transform:rotate(45deg);
      background:#f5c7b7;
    }
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height 220ms ease;
    }
    .faq-answer p{
      margin:0;
      padding:0 20px 20px;
      color:var(--muted);
      line-height:1.85;
    }

    .cta-band{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      align-items:center;
      gap:24px;
      padding:34px;
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 18% 20%, rgba(216,91,69,.25), transparent 28%),
        linear-gradient(135deg,#231715,#17110f);
      border:1px solid rgba(255,241,226,.14);
      color:var(--white);
      box-shadow:var(--shadow-dark);
    }
    .cta-band h2{
      margin-bottom:10px;
      font-size:clamp(26px,3vw,38px);
    }
    .cta-band p{
      margin:0;
      max-width:680px;
      color:#d8c4b7;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }

    .site-footer{
      background:var(--bg-dark);
      color:#d9c5b7;
      padding:62px 0 28px;
      border-top:1px solid rgba(255,241,226,.12);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.5fr .8fr 1fr;
      gap:34px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,241,226,.12);
    }
    .footer-title{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:14px;
      color:var(--white);
      font-weight:900;
    }
    .footer-col p{
      margin:0;
      max-width:420px;
      color:#bda99b;
      font-size:14px;
      line-height:1.75;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      width:max-content;
      color:#d9c5b7;
      font-size:14px;
      border-bottom:1px solid transparent;
      transition:color var(--transition), border-color var(--transition);
    }
    .footer-links a:hover{
      color:var(--white);
      border-color:rgba(255,241,226,.45);
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:18px;
      padding-top:22px;
      color:#9e8879;
      font-size:13px;
    }

    .mobile-sticky{
      display:none;
      position:fixed;
      left:12px;
      right:12px;
      bottom:12px;
      z-index:45;
      padding:10px;
      border:1px solid rgba(44,36,32,.12);
      border-radius:999px;
      background:rgba(255,250,244,.92);
      backdrop-filter:blur(14px);
      box-shadow:0 18px 36px rgba(44,36,32,.16);
      justify-content:space-between;
      gap:8px;
    }
    .mobile-sticky a{
      flex:1;
      min-height:40px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      color:var(--text);
      font-size:13px;
      font-weight:900;
    }
    .mobile-sticky a:nth-child(2){
      background:var(--primary);
      color:var(--white);
    }

    @media (max-width:1100px){
      .search{width:200px}
      .channel-grid{grid-template-columns:1fr;gap:30px}
      .status-panel{max-width:520px}
      .filter-shell{grid-template-columns:1fr}
      .filter-card{position:static}
      .metrics-grid,.process-grid{grid-template-columns:repeat(2,1fr)}
      .subscribe-panel{grid-template-columns:1fr}
    }

    @media (max-width:880px){
      .nav{height:66px}
      .brand-text{max-width:230px}
      .search{display:none}
      .menu-toggle{display:flex}
      .nav-links{
        position:fixed;
        left:20px;
        right:20px;
        top:104px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:10px;
        padding:18px;
        border:1px solid rgba(255,241,226,.16);
        border-radius:24px;
        background:rgba(23,17,15,.98);
        box-shadow:var(--shadow-dark);
      }
      .nav-links.is-open{display:flex}
      .nav-links a{
        padding:15px 16px;
        font-size:18px;
        border-radius:18px;
      }
      .channel-head{padding:42px 0 56px}
      .section{padding:68px 0}
      .section-head{display:block}
      .section-desc{margin-top:14px}
      .featured-card{grid-template-columns:1fr}
      .cover{min-height:230px}
      .preview-card{grid-template-columns:1fr;gap:16px}
      .preview-thumb{height:210px}
      .preview-action{justify-items:start}
      .mini-meter{max-width:260px}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column}
    }

    @media (max-width:560px){
      .container{width:min(100% - 28px, var(--container))}
      .age-strip .container{display:block;padding:9px 0}
      .age-strip span{display:block}
      .brand-text{max-width:160px;font-size:14px}
      .brand-badge{display:none}
      .nav-actions .btn-primary{display:none}
      h1{font-size:36px}
      .head-copy{font-size:16px}
      .status-panel{padding:16px;border-radius:24px}
      .mini-countdown{gap:8px}
      .time-cell{min-height:66px;border-radius:15px}
      .time-cell strong{font-size:22px}
      .section{padding:56px 0}
      .filter-card{padding:16px}
      .filter-options{flex-wrap:nowrap;overflow-x:auto;padding-bottom:4px}
      .filter-btn{flex:0 0 auto}
      .featured-body{padding:22px}
      .featured-body h3,.preview-card h3{font-size:21px}
      .preview-card{padding:12px;border-radius:22px}
      .preview-thumb{height:178px;border-radius:18px}
      .metrics-grid,.process-grid{grid-template-columns:1fr}
      .subscribe-panel{padding:22px;border-radius:24px}
      .form-row{grid-template-columns:1fr}
      .cta-band{grid-template-columns:1fr;padding:24px;border-radius:24px}
      .cta-actions .btn{width:100%}
      .pagination{flex-wrap:wrap}
      .mobile-sticky{display:flex}
      body{padding-bottom:76px}
    }
