/* roulang page: index */
:root{
      --bg:#0b0d14;
      --bg-soft:#111522;
      --bg-panel:#171b2a;
      --surface:#ffffff;
      --surface-soft:#f6f4ef;
      --text:#171923;
      --text-light:#ffffff;
      --muted:#73788a;
      --muted-light:#bfc4d6;
      --primary:#ff5a3d;
      --primary-dark:#e8462b;
      --primary-soft:#fff0ec;
      --accent:#f4c86b;
      --accent-2:#62d6c4;
      --line:#e8e3d8;
      --line-dark:rgba(255,255,255,.12);
      --shadow-sm:0 8px 22px rgba(18,22,36,.08);
      --shadow-md:0 18px 46px rgba(15,18,30,.16);
      --shadow-lg:0 30px 80px rgba(0,0,0,.32);
      --radius-sm:12px;
      --radius:20px;
      --radius-lg:30px;
      --container:1180px;
      --header-h:76px;
      --ease:all .25s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:linear-gradient(180deg,#fffaf1 0%,#f7f4ee 42%,#fff 100%);
      line-height:1.72;
      overflow-x:hidden;
      padding-bottom:78px;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--primary)}
    img{max-width:100%;height:auto;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(255,90,61,.22)}
    .container{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
    }
    .section{
      padding:88px 0;
      position:relative;
    }
    .section.compact{padding:62px 0}
    .section-dark{
      background:radial-gradient(circle at 18% 10%,rgba(255,90,61,.18),transparent 34%),
                 radial-gradient(circle at 90% 12%,rgba(98,214,196,.14),transparent 35%),
                 #10131d;
      color:var(--text-light);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,90,61,.12);
      color:var(--primary-dark);
      font-size:13px;
      font-weight:800;
      letter-spacing:.04em;
      margin-bottom:15px;
    }
    .section-dark .eyebrow{
      background:rgba(255,255,255,.10);
      color:#ffd1c7;
      border:1px solid var(--line-dark);
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:28px;
      margin-bottom:34px;
    }
    .section-title{
      margin:0;
      font-size:clamp(28px,4vw,46px);
      line-height:1.15;
      letter-spacing:-.04em;
      font-weight:900;
    }
    .section-desc{
      margin:12px 0 0;
      color:var(--muted);
      max-width:650px;
      font-size:16px;
    }
    .section-dark .section-desc{color:var(--muted-light)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:12px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:850;
      letter-spacing:.01em;
      box-shadow:none;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#ff7d4a);
      box-shadow:0 12px 28px rgba(255,90,61,.28);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(255,90,61,.36);
    }
    .btn-ghost{
      color:var(--text);
      background:#fff;
      border-color:rgba(20,23,33,.12);
    }
    .btn-ghost:hover,.btn-ghost:focus{
      color:var(--primary-dark);
      border-color:rgba(255,90,61,.35);
      transform:translateY(-2px);
    }
    .btn-dark{
      color:#fff;
      background:rgba(255,255,255,.11);
      border-color:rgba(255,255,255,.18);
      backdrop-filter:blur(12px);
    }
    .btn-dark:hover,.btn-dark:focus{
      color:#fff;
      background:rgba(255,255,255,.18);
      transform:translateY(-2px);
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:6px 10px;
      font-size:12px;
      font-weight:850;
      color:#fff;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(14px);
    }
    .tag{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:6px 11px;
      font-size:12px;
      font-weight:800;
      color:#7c2a1e;
      background:#fff1ec;
      border:1px solid #ffd8ce;
    }
    .card{
      border-radius:var(--radius);
      background:rgba(255,255,255,.86);
      border:1px solid rgba(25,28,40,.08);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:rgba(255,90,61,.22);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      height:var(--header-h);
      background:rgba(12,14,22,.82);
      border-bottom:1px solid rgba(255,255,255,.10);
      backdrop-filter:blur(18px);
    }
    .nav-wrap{
      height:var(--header-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-weight:950;
      letter-spacing:-.03em;
      font-size:19px;
      min-width:max-content;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:#160d0a;
      background:conic-gradient(from 200deg,var(--accent),#ff7859,var(--accent-2),var(--accent));
      box-shadow:0 10px 28px rgba(255,90,61,.25);
      position:relative;
      overflow:hidden;
    }
    .brand-mark:after{
      content:"";
      width:18px;
      height:18px;
      border:3px solid rgba(0,0,0,.55);
      border-radius:50%;
      position:absolute;
      right:7px;
      bottom:7px;
    }
    .nav-main{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      flex:1;
    }
    .nav-link{
      color:rgba(255,255,255,.78);
      padding:10px 14px;
      border-radius:999px;
      font-weight:780;
      font-size:15px;
    }
    .nav-link:hover,.nav-link:focus,.nav-link.active{
      color:#fff;
      background:rgba(255,255,255,.10);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-actions .btn{
      min-height:40px;
      padding:9px 15px;
      font-size:14px;
    }
    .menu-toggle{
      display:none;
      width:42px;
      height:42px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.08);
      color:#fff;
      border-radius:14px;
      align-items:center;
      justify-content:center;
    }
    .menu-toggle:focus{
      outline:3px solid rgba(255,90,61,.38);
      outline-offset:2px;
    }

    .hero{
      min-height:calc(100vh - var(--header-h));
      padding:54px 0 70px;
      color:#fff;
      background:
        linear-gradient(180deg,rgba(11,13,20,.30),rgba(11,13,20,.96)),
        radial-gradient(circle at 26% 18%,rgba(255,90,61,.42),transparent 28%),
        radial-gradient(circle at 82% 24%,rgba(244,200,107,.22),transparent 28%),
        linear-gradient(135deg,#171926 0%,#080a10 72%);
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(180deg,rgba(0,0,0,.8),transparent 80%);
      pointer-events:none;
    }
    .hero-stage{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.02fr .98fr;
      gap:42px;
      align-items:center;
    }
    .hero-copy{
      padding:28px 0;
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 13px;
      border-radius:999px;
      color:#ffe6dd;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(16px);
      margin-bottom:22px;
      font-weight:800;
      font-size:13px;
    }
    h1{
      margin:0;
      font-size:clamp(42px,6.8vw,82px);
      line-height:.98;
      letter-spacing:-.065em;
      font-weight:950;
    }
    .hero-lead{
      margin:24px 0 0;
      max-width:720px;
      color:#d9deef;
      font-size:clamp(16px,2vw,19px);
    }
    .hero-actions{
      margin-top:32px;
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }
    .hero-points{
      margin-top:28px;
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }
    .hero-point{
      min-width:138px;
      padding:13px 15px;
      border-radius:18px;
      background:rgba(255,255,255,.09);
      border:1px solid rgba(255,255,255,.13);
      backdrop-filter:blur(18px);
    }
    .hero-point strong{
      display:block;
      font-size:22px;
      line-height:1.1;
      color:#fff;
      font-weight:950;
    }
    .hero-point span{
      display:block;
      margin-top:3px;
      color:#bfc4d6;
      font-size:12px;
      font-weight:700;
    }
    .poster-immersive{
      position:relative;
      min-height:575px;
      border-radius:34px;
      padding:18px;
      background:linear-gradient(145deg,rgba(255,255,255,.18),rgba(255,255,255,.04));
      border:1px solid rgba(255,255,255,.16);
      box-shadow:var(--shadow-lg);
      overflow:hidden;
    }
    .poster-immersive:before{
      content:"";
      position:absolute;
      inset:-25%;
      background:radial-gradient(circle at 42% 18%,rgba(255,255,255,.22),transparent 19%),
                 radial-gradient(circle at 66% 72%,rgba(255,90,61,.28),transparent 24%);
      filter:blur(14px);
    }
    .main-poster{
      position:relative;
      z-index:1;
      min-height:438px;
      border-radius:28px;
      padding:24px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:
        linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.72)),
        radial-gradient(circle at 65% 38%,rgba(244,200,107,.72),transparent 20%),
        radial-gradient(circle at 30% 20%,rgba(98,214,196,.42),transparent 23%),
        linear-gradient(135deg,#38211d 0%,#111827 58%,#090b11 100%);
      overflow:hidden;
    }
    .main-poster:after{
      content:"";
      position:absolute;
      left:-40px;
      bottom:36px;
      width:120%;
      height:155px;
      background:repeating-linear-gradient(90deg,rgba(255,255,255,.12) 0 10px,transparent 10px 18px);
      transform:rotate(-8deg);
      opacity:.18;
    }
    .poster-top{
      position:relative;
      z-index:1;
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
    }
    .heat-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 13px;
      border-radius:999px;
      color:#190d09;
      background:linear-gradient(135deg,#ffe08a,#ff9d67);
      font-weight:950;
      box-shadow:0 12px 26px rgba(244,200,107,.23);
    }
    .poster-title{
      position:relative;
      z-index:1;
    }
    .poster-title small{
      color:#ffddcc;
      font-weight:850;
      letter-spacing:.12em;
    }
    .poster-title h2{
      margin:8px 0 8px;
      font-size:38px;
      line-height:1.04;
      letter-spacing:-.04em;
      font-weight:950;
      color:#fff;
    }
    .poster-title p{
      color:#d8dce9;
      margin:0;
      max-width:390px;
    }
    .mini-posters{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:14px;
    }
    .mini-poster{
      min-height:118px;
      border-radius:20px;
      padding:13px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      border:1px solid rgba(255,255,255,.13);
      background:linear-gradient(145deg,rgba(255,255,255,.15),rgba(255,255,255,.05));
      backdrop-filter:blur(12px);
    }
    .mini-poster strong{
      color:#fff;
      line-height:1.25;
      font-size:15px;
    }
    .mini-poster span{
      color:#c8cede;
      font-size:12px;
      font-weight:750;
    }

    .directory-layout{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:24px;
      align-items:stretch;
    }
    .directory-feature{
      padding:30px;
      background:#161a27;
      color:#fff;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.10);
      box-shadow:var(--shadow-md);
      position:relative;
      overflow:hidden;
    }
    .directory-feature:before{
      content:"";
      position:absolute;
      width:210px;
      height:210px;
      border-radius:50%;
      right:-80px;
      top:-80px;
      background:rgba(255,90,61,.30);
      filter:blur(5px);
    }
    .directory-feature h3{
      position:relative;
      margin:20px 0 12px;
      font-size:30px;
      line-height:1.15;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .directory-feature p{
      position:relative;
      color:#cbd1e1;
      margin:0 0 22px;
    }
    .directory-metrics{
      position:relative;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-top:26px;
    }
    .metric{
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
    }
    .metric b{
      display:block;
      color:#fff;
      font-size:26px;
      line-height:1.1;
      font-weight:950;
    }
    .metric span{
      color:#bfc4d6;
      font-size:13px;
      font-weight:700;
    }
    .directory-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .directory-card{
      padding:24px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .directory-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:#ffd2c7;
    }
    .directory-icon{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      border-radius:16px;
      color:var(--primary-dark);
      background:var(--primary-soft);
      margin-bottom:16px;
      font-size:19px;
    }
    .directory-card h3{
      margin:0 0 8px;
      font-size:21px;
      font-weight:920;
      letter-spacing:-.03em;
    }
    .directory-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .recommend-shell{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:18px;
      align-items:stretch;
    }
    .recommend-main{
      min-height:430px;
      border-radius:30px;
      padding:28px;
      color:#fff;
      background:
        linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.74)),
        radial-gradient(circle at 70% 22%,rgba(255,90,61,.56),transparent 22%),
        radial-gradient(circle at 24% 36%,rgba(98,214,196,.34),transparent 25%),
        linear-gradient(145deg,#2a1a24,#0b1019);
      box-shadow:var(--shadow-lg);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      position:relative;
    }
    .recommend-main:after{
      content:"";
      position:absolute;
      inset:auto -20% -18% -20%;
      height:190px;
      background:linear-gradient(90deg,transparent,rgba(255,255,255,.20),transparent);
      transform:rotate(-6deg);
      opacity:.24;
    }
    .recommend-main h3{
      position:relative;
      z-index:1;
      margin:14px 0 10px;
      font-size:38px;
      line-height:1.08;
      font-weight:950;
      letter-spacing:-.045em;
    }
    .recommend-main p{
      position:relative;
      z-index:1;
      margin:0;
      color:#d9deec;
      max-width:530px;
    }
    .recommend-actions{
      position:relative;
      z-index:1;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:24px;
    }
    .recommend-side{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
    }
    .movie-card{
      display:grid;
      grid-template-columns:120px 1fr;
      gap:16px;
      padding:14px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .movie-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:#ffd2c7;
    }
    .movie-cover{
      min-height:144px;
      border-radius:18px;
      background:linear-gradient(145deg,#ff795d,#181d2b);
      position:relative;
      overflow:hidden;
    }
    .movie-cover:before{
      content:"";
      position:absolute;
      inset:12px;
      border:1px solid rgba(255,255,255,.35);
      border-radius:14px;
    }
    .movie-cover.alt{background:linear-gradient(145deg,#62d6c4,#101420)}
    .movie-cover.gold{background:linear-gradient(145deg,#f4c86b,#2f1c14)}
    .movie-body{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-width:0;
    }
    .movie-body h3{
      margin:4px 0 6px;
      font-size:20px;
      font-weight:920;
      letter-spacing:-.03em;
    }
    .movie-body p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .movie-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .inline-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--primary-dark);
      font-weight:900;
      margin-top:12px;
    }
    .inline-link:hover{gap:10px;color:#bb2f1c}

    .proof-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:1px;
      border-radius:28px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.10);
      box-shadow:var(--shadow-lg);
    }
    .proof-item{
      padding:26px 22px;
      background:rgba(255,255,255,.08);
      backdrop-filter:blur(10px);
    }
    .proof-item i{
      color:var(--accent);
      font-size:22px;
      margin-bottom:14px;
    }
    .proof-item strong{
      display:block;
      color:#fff;
      font-size:19px;
      font-weight:930;
      margin-bottom:7px;
    }
    .proof-item span{
      color:#c8cede;
      font-size:14px;
    }

    .steps-layout{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:28px;
      align-items:center;
    }
    .scene-panel{
      border-radius:30px;
      padding:28px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-md);
    }
    .scene-panel h3{
      margin:0 0 14px;
      font-size:28px;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .scene-panel p{
      color:var(--muted);
      margin:0 0 20px;
    }
    .progress-track{
      height:10px;
      border-radius:999px;
      background:#eee8dc;
      overflow:hidden;
      margin:22px 0;
    }
    .progress-bar{
      width:76%;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--primary),var(--accent));
    }
    .step-list{
      display:grid;
      gap:14px;
    }
    .step-item{
      display:grid;
      grid-template-columns:48px 1fr;
      gap:14px;
      align-items:start;
      padding:18px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .step-num{
      width:48px;
      height:48px;
      display:grid;
      place-items:center;
      border-radius:16px;
      color:#fff;
      font-weight:950;
      background:#111522;
    }
    .step-item h3{
      margin:0 0 5px;
      font-size:19px;
      font-weight:920;
    }
    .step-item p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .plan-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .plan-card{
      padding:26px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      position:relative;
      transition:var(--ease);
    }
    .plan-card.featured{
      background:#151925;
      color:#fff;
      border-color:rgba(255,255,255,.13);
      transform:translateY(-8px);
      box-shadow:var(--shadow-lg);
    }
    .plan-card:hover{
      transform:translateY(-6px);
      box-shadow:var(--shadow-md);
    }
    .plan-card.featured:hover{transform:translateY(-12px)}
    .plan-card h3{
      margin:12px 0 8px;
      font-size:24px;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .plan-price{
      display:flex;
      align-items:flex-end;
      gap:6px;
      margin:16px 0;
    }
    .plan-price strong{
      font-size:40px;
      line-height:1;
      font-weight:950;
      letter-spacing:-.05em;
    }
    .plan-price span{
      color:var(--muted);
      font-weight:800;
      padding-bottom:4px;
    }
    .featured .plan-price span,.featured p,.featured li{color:#cbd1e1}
    .plan-card p{
      margin:0 0 18px;
      color:var(--muted);
      min-height:48px;
    }
    .check-list{
      list-style:none;
      padding:0;
      margin:18px 0 0;
      display:grid;
      gap:10px;
    }
    .check-list li{
      display:flex;
      gap:9px;
      align-items:flex-start;
      color:#4d5263;
      font-size:14px;
    }
    .check-list i{
      color:var(--primary);
      margin-top:5px;
    }

    .faq-layout{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:28px;
      align-items:start;
    }
    .faq-note{
      padding:28px;
      border-radius:28px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      position:sticky;
      top:98px;
    }
    .faq-note h3{
      margin:0 0 10px;
      font-size:28px;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .faq-note p{margin:0;color:var(--muted)}
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      background:#fff;
      border:1px solid var(--line);
      border-radius:20px;
      margin-bottom:12px;
      overflow:hidden;
      box-shadow:var(--shadow-sm);
    }
    .accordion-title{
      border:0;
      color:var(--text);
      font-size:17px;
      font-weight:920;
      padding:20px 54px 20px 22px;
      background:#fff;
      line-height:1.35;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#fff7f4;
      color:var(--primary-dark);
    }
    .accordion-title:before{
      right:22px;
      margin-top:-10px;
      font-size:24px;
      color:var(--primary);
    }
    .accordion-content{
      border:0;
      border-top:1px solid #f0e7dc;
      color:var(--muted);
      padding:18px 22px 22px;
      line-height:1.8;
    }

    .news-layout{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:24px;
      align-items:start;
    }
    .news-list{
      border-radius:28px;
      overflow:hidden;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-md);
    }
    .news-item{
      display:grid;
      grid-template-columns:104px 1fr auto;
      gap:18px;
      align-items:center;
      padding:22px;
      border-bottom:1px solid #f0e9df;
      transition:var(--ease);
    }
    .news-item:last-child{border-bottom:0}
    .news-item:hover{
      background:#fff8f5;
    }
    .news-date{
      border-radius:18px;
      padding:12px;
      text-align:center;
      background:#f8f0e4;
      color:#7a5037;
      font-weight:900;
      line-height:1.25;
    }
    .news-date span{
      display:block;
      font-size:12px;
      color:#9b755c;
      font-weight:800;
    }
    .news-title{
      font-weight:930;
      font-size:18px;
      line-height:1.38;
      color:var(--text);
    }
    .news-summary{
      margin-top:6px;
      color:var(--muted);
      font-size:14px;
    }
    .news-arrow{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:#fff0ec;
      color:var(--primary-dark);
    }
    .editor-card{
      padding:26px;
      border-radius:28px;
      color:#fff;
      background:
        linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.62)),
        radial-gradient(circle at 72% 22%,rgba(255,90,61,.55),transparent 26%),
        linear-gradient(145deg,#1b2130,#0c0f18);
      box-shadow:var(--shadow-lg);
      min-height:360px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .editor-card h3{
      margin:16px 0 10px;
      font-size:30px;
      line-height:1.12;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .editor-card p{
      margin:0;
      color:#d8ddeb;
    }
    .editor-bottom{
      display:grid;
      gap:10px;
      margin-top:24px;
    }
    .editor-line{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:12px 0;
      border-top:1px solid rgba(255,255,255,.13);
      color:#e7eaf5;
      font-weight:800;
      font-size:14px;
    }

    .share-wrap{
      border-radius:34px;
      padding:34px;
      color:#fff;
      background:
        radial-gradient(circle at 12% 18%,rgba(244,200,107,.25),transparent 25%),
        radial-gradient(circle at 88% 18%,rgba(98,214,196,.18),transparent 28%),
        linear-gradient(135deg,#151925,#0b0d14);
      box-shadow:var(--shadow-lg);
      overflow:hidden;
      position:relative;
    }
    .share-wrap:after{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-90px;
      bottom:-120px;
      border-radius:50%;
      background:rgba(255,90,61,.24);
      filter:blur(5px);
    }
    .share-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr .95fr;
      gap:32px;
      align-items:center;
    }
    .share-wrap h2{
      margin:0;
      font-size:clamp(30px,4vw,50px);
      line-height:1.12;
      letter-spacing:-.05em;
      font-weight:950;
    }
    .share-wrap p{
      margin:15px 0 0;
      color:#cbd1e1;
      max-width:660px;
    }
    .share-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:26px;
    }
    .subscribe-box{
      padding:22px;
      border-radius:26px;
      background:rgba(255,255,255,.09);
      border:1px solid rgba(255,255,255,.13);
      backdrop-filter:blur(14px);
    }
    .subscribe-box label{
      color:#fff;
      font-weight:900;
      margin-bottom:10px;
      display:block;
    }
    .input-row{
      display:flex;
      gap:10px;
      align-items:center;
    }
    .input-row input{
      height:50px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.11);
      color:#fff;
      padding:0 16px;
      box-shadow:none;
      margin:0;
    }
    .input-row input::placeholder{color:#aeb5c8}
    .input-row input:focus{
      border-color:rgba(255,90,61,.72);
      background:rgba(255,255,255,.15);
      box-shadow:0 0 0 4px rgba(255,90,61,.16);
    }
    .form-tip{
      min-height:22px;
      margin-top:10px;
      color:#ffd8ce;
      font-size:13px;
      font-weight:750;
    }

    .fixed-cta{
      position:fixed;
      left:50%;
      bottom:16px;
      transform:translateX(-50%);
      z-index:60;
      width:min(980px,calc(100% - 28px));
      padding:10px 12px 10px 18px;
      border-radius:999px;
      background:rgba(18,21,32,.92);
      color:#fff;
      border:1px solid rgba(255,255,255,.14);
      box-shadow:0 18px 48px rgba(0,0,0,.28);
      backdrop-filter:blur(18px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .fixed-cta strong{
      display:flex;
      align-items:center;
      gap:9px;
      font-size:15px;
      line-height:1.35;
    }
    .fixed-cta span{
      color:#c8cede;
      font-size:13px;
      font-weight:700;
    }
    .fixed-cta .btn{
      min-height:40px;
      padding:9px 15px;
      font-size:14px;
    }

    .site-footer{
      padding:54px 0 36px;
      background:#080a10;
      color:#fff;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:34px;
      align-items:start;
      padding-bottom:32px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:20px;
      font-weight:950;
      letter-spacing:-.03em;
      margin-bottom:14px;
    }
    .footer-about{
      color:#b8bece;
      max-width:650px;
      margin:0;
    }
    .footer-links{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .footer-link-card{
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      color:#d6dbea;
      transition:var(--ease);
    }
    .footer-link-card:hover{
      color:#fff;
      background:rgba(255,255,255,.10);
      transform:translateY(-3px);
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
      padding-top:24px;
      color:#8f96aa;
      font-size:14px;
    }

    @media (max-width:1024px){
      .hero-stage,
      .directory-layout,
      .recommend-shell,
      .steps-layout,
      .faq-layout,
      .news-layout,
      .share-grid,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .poster-immersive{min-height:auto}
      .proof-strip{grid-template-columns:repeat(2,1fr)}
      .faq-note{position:relative;top:auto}
      .plan-grid{grid-template-columns:1fr}
      .plan-card.featured{transform:none}
      .plan-card.featured:hover{transform:translateY(-6px)}
      .section-head{align-items:flex-start;flex-direction:column}
    }
    @media (max-width:768px){
      body{padding-bottom:96px}
      .container{width:min(100% - 28px,var(--container))}
      .site-header{height:auto;min-height:70px}
      .nav-wrap{
        min-height:70px;
        height:auto;
        flex-wrap:wrap;
        padding:12px 0;
      }
      .menu-toggle{display:inline-flex;margin-left:auto}
      .nav-main,.nav-actions{
        display:none;
        width:100%;
      }
      .site-header.is-open .nav-main,
      .site-header.is-open .nav-actions{
        display:flex;
      }
      .nav-main{
        order:3;
        justify-content:flex-start;
        padding-top:10px;
      }
      .nav-actions{
        order:4;
        flex-direction:column;
        align-items:stretch;
        padding:10px 0 4px;
      }
      .nav-actions .btn{width:100%}
      .hero{
        min-height:auto;
        padding:38px 0 52px;
      }
      h1{font-size:clamp(38px,13vw,62px)}
      .hero-actions .btn{width:100%}
      .hero-points{display:grid;grid-template-columns:1fr 1fr}
      .poster-title h2{font-size:30px}
      .mini-posters{grid-template-columns:1fr}
      .directory-grid{grid-template-columns:1fr}
      .movie-card{grid-template-columns:92px 1fr}
      .movie-cover{min-height:122px}
      .proof-strip{grid-template-columns:1fr}
      .news-item{
        grid-template-columns:1fr;
        gap:12px;
      }
      .news-arrow{display:none}
      .input-row{flex-direction:column;align-items:stretch}
      .input-row .btn{width:100%}
      .fixed-cta{
        border-radius:24px;
        align-items:flex-start;
        flex-direction:column;
        padding:14px;
      }
      .fixed-cta .btn{width:100%}
      .footer-links{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .section{padding:64px 0}
      .section.compact{padding:48px 0}
      .brand{font-size:17px}
      .brand-mark{width:38px;height:38px;border-radius:14px}
      .hero-points{grid-template-columns:1fr}
      .poster-immersive{padding:12px;border-radius:26px}
      .main-poster{padding:18px;border-radius:22px;min-height:380px}
      .poster-top{flex-direction:column}
      .directory-feature,
      .share-wrap{padding:24px;border-radius:26px}
      .directory-metrics{grid-template-columns:1fr}
      .recommend-main{min-height:390px;padding:22px;border-radius:26px}
      .recommend-main h3{font-size:30px}
      .movie-card{grid-template-columns:1fr}
      .movie-cover{min-height:190px}
      .step-item{grid-template-columns:1fr}
      .section-title{font-size:30px}
    }
