/* roulang page: index */
:root{
      --bg-deep:#120714;
      --bg-ink:#1b0b22;
      --bg-cherry:#2a0d21;
      --bg-soft:#f8f1ec;
      --bg-card:#fffaf6;
      --text:#241827;
      --text-soft:#7a687b;
      --text-on-dark:#fff7f1;
      --muted-on-dark:#d9c6d9;
      --purple:#3b1550;
      --purple-2:#5f2479;
      --coral:#ff5c73;
      --rose:#d83f8a;
      --amber:#ffbf62;
      --line:rgba(48,22,58,.12);
      --line-dark:rgba(255,255,255,.16);
      --shadow:0 18px 48px rgba(30,10,35,.14);
      --shadow-strong:0 22px 70px rgba(255,92,115,.28);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --container:1220px;
      --font:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 14% 4%, rgba(255,92,115,.14), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(255,191,98,.12), transparent 30%),
        linear-gradient(180deg,#170817 0%,#211020 38%,var(--bg-soft) 38%,var(--bg-soft) 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    img{max-width:100%;height:auto}
    button,input{font-family:inherit}
    ::selection{background:rgba(255,92,115,.32)}
    .container{max-width:var(--container)}
    .section-pad{padding:88px 0}
    .section-pad-sm{padding:62px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      background:rgba(255,191,98,.15);
      color:#6f3d00;
      border:1px solid rgba(255,191,98,.35);
      font-size:12px;
      font-weight:800;
      letter-spacing:.05em;
    }
    .eyebrow.dark{
      color:var(--text-on-dark);
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.18);
    }
    .section-title{
      margin:16px 0 10px;
      font-weight:800;
      font-size:clamp(28px,3.4vw,38px);
      line-height:1.16;
      letter-spacing:-.03em;
    }
    .section-desc{
      color:var(--text-soft);
      font-size:16px;
      max-width:760px;
      margin:0;
    }
    .top-strip{
      background:linear-gradient(90deg,#170817,#351144,#170817);
      color:var(--text-on-dark);
      border-bottom:1px solid rgba(255,92,115,.22);
      font-size:13px;
    }
    .top-strip-inner{
      min-height:42px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .status-dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--coral);
      box-shadow:0 0 16px rgba(255,92,115,.9);
      flex:0 0 auto;
    }
    .strip-copy{display:flex;align-items:center;gap:10px;color:#f4dce4}
    .strip-badges{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:var(--radius-pill);
      border:1px solid rgba(255,255,255,.18);
      color:var(--text-on-dark);
      background:rgba(255,255,255,.08);
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .badge-soft.amber{
      background:rgba(255,191,98,.16);
      border-color:rgba(255,191,98,.35);
      color:#ffe3b0;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1020;
      background:rgba(18,7,20,.78);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .navbar{padding:14px 0}
    .brand-logo{
      display:flex;
      align-items:center;
      gap:12px;
      color:var(--text-on-dark);
      font-weight:900;
      letter-spacing:-.03em;
      font-size:18px;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:15px;
      display:grid;place-items:center;
      background:
        radial-gradient(circle at 30% 25%,rgba(255,191,98,.9),transparent 32%),
        linear-gradient(135deg,var(--coral),var(--purple-2));
      box-shadow:0 0 28px rgba(255,92,115,.35);
      color:#fff;
      font-weight:900;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      margin-left:auto;
      margin-right:18px;
    }
    .nav-link-custom{
      color:#eadce9;
      padding:9px 14px;
      border-radius:var(--radius-pill);
      font-size:14px;
      font-weight:750;
      border:1px solid transparent;
    }
    .nav-link-custom:hover,
    .nav-link-custom:focus{
      color:#fff;
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.14);
      outline:none;
    }
    .nav-link-custom.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(255,92,115,.24),rgba(216,63,138,.18));
      border-color:rgba(255,92,115,.38);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.16);
    }
    .btn-main{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border:0;
      border-radius:var(--radius-pill);
      padding:13px 22px;
      background:linear-gradient(135deg,var(--coral),var(--rose) 58%,var(--purple-2));
      color:#fff;
      font-weight:850;
      box-shadow:0 14px 34px rgba(255,92,115,.28);
      transition:.24s ease;
      min-height:46px;
    }
    .btn-main:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 20px 48px rgba(255,92,115,.38);
      filter:saturate(1.08);
    }
    .btn-main:focus-visible,
    .btn-ghost:focus-visible,
    .nav-link-custom:focus-visible,
    .filter-chip:focus-visible,
    .form-control:focus{
      outline:3px solid rgba(255,191,98,.48);
      outline-offset:3px;
      box-shadow:none;
    }
    .btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:var(--radius-pill);
      padding:12px 20px;
      border:1px solid rgba(255,255,255,.22);
      color:var(--text-on-dark);
      background:rgba(255,255,255,.06);
      font-weight:800;
      transition:.24s ease;
      min-height:46px;
    }
    .btn-ghost:hover{
      color:#fff;
      background:rgba(255,255,255,.12);
      border-color:rgba(255,255,255,.34);
      transform:translateY(-2px);
    }
    .btn-light-ghost{
      color:var(--purple);
      border-color:rgba(59,21,80,.18);
      background:rgba(59,21,80,.04);
    }
    .btn-light-ghost:hover{
      color:var(--purple);
      background:rgba(255,92,115,.09);
      border-color:rgba(255,92,115,.26);
    }
    .mobile-toggler{
      border:1px solid rgba(255,255,255,.18);
      color:#fff;
      background:rgba(255,255,255,.08);
      border-radius:14px;
      width:44px;height:44px;
      display:none;
      align-items:center;
      justify-content:center;
    }
    .offcanvas{
      background:#160819;
      color:var(--text-on-dark);
    }
    .offcanvas .btn-close{filter:invert(1);opacity:.9}
    .offcanvas-nav{
      display:grid;
      gap:10px;
      margin-top:20px;
    }
    .hero{
      position:relative;
      min-height:640px;
      padding:78px 0 72px;
      color:var(--text-on-dark);
      overflow:hidden;
      background:
        radial-gradient(circle at 50% -10%,rgba(255,191,98,.20),transparent 30%),
        radial-gradient(circle at 18% 35%,rgba(255,92,115,.22),transparent 30%),
        radial-gradient(circle at 82% 42%,rgba(95,36,121,.52),transparent 36%),
        linear-gradient(135deg,#150718 0%,#2a0d27 52%,#120714 100%);
    }
    .hero:before{
      content:"";
      position:absolute;inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.72),transparent 82%);
      pointer-events:none;
    }
    .hero:after{
      content:"";
      position:absolute;
      left:-10%;right:-10%;bottom:-120px;height:220px;
      background:var(--bg-soft);
      transform:skewY(-3deg);
      transform-origin:left top;
    }
    .hero-wrap{position:relative;z-index:2}
    .hero-stage{
      border:1px solid rgba(255,255,255,.16);
      border-radius:34px;
      background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.045));
      box-shadow:0 30px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.14);
      padding:30px;
      overflow:hidden;
    }
    .hero-topline{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
      margin-bottom:22px;
    }
    .launch-dots{display:flex;gap:8px}
    .launch-dots span{
      width:10px;height:10px;border-radius:50%;
      background:rgba(255,255,255,.22);
    }
    .launch-dots span.active{background:var(--coral);box-shadow:0 0 18px rgba(255,92,115,.8)}
    .hero h1{
      font-size:clamp(34px,6vw,64px);
      line-height:1.08;
      font-weight:900;
      letter-spacing:-.06em;
      max-width:880px;
      margin:0;
    }
    .hero-lead{
      margin:20px 0 0;
      color:#ead7e8;
      max-width:830px;
      font-size:17px;
      line-height:1.85;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:28px;
    }
    .hero-grid{
      margin-top:30px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:stretch;
    }
    .countdown-card{
      border-radius:28px;
      padding:24px;
      background:rgba(14,6,17,.58);
      border:1px solid rgba(255,92,115,.28);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
      display:grid;
      grid-template-columns:160px 1fr;
      gap:22px;
      align-items:center;
    }
    .count-ring{
      width:156px;height:156px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:
        conic-gradient(var(--coral) 0 72%, rgba(255,255,255,.12) 72% 100%);
      position:relative;
    }
    .count-ring:before{
      content:"";
      position:absolute;inset:12px;
      border-radius:50%;
      background:#19091d;
      border:1px solid rgba(255,255,255,.12);
    }
    .count-ring-inner{
      position:relative;
      text-align:center;
      z-index:1;
    }
    .count-ring strong{
      display:block;
      font-size:34px;
      line-height:1;
      color:#fff;
      font-weight:900;
    }
    .count-ring span{
      color:#ffd5dd;
      font-size:12px;
      font-weight:800;
    }
    .count-list{
      display:grid;
      gap:12px;
    }
    .count-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      color:#f7edf4;
    }
    .count-item small{color:#ceb6cf;font-weight:700}
    .matrix-panel{
      border-radius:28px;
      padding:20px;
      background:linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.05));
      border:1px solid rgba(255,255,255,.14);
    }
    .entry-matrix{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
    }
    .entry-cell{
      min-height:94px;
      border-radius:20px;
      padding:14px;
      background:rgba(255,255,255,.075);
      border:1px solid rgba(255,255,255,.12);
      transition:.22s ease;
    }
    .entry-cell:hover{
      transform:translateY(-3px);
      border-color:rgba(255,92,115,.42);
      background:rgba(255,255,255,.105);
    }
    .entry-cell b{display:block;font-size:15px;color:#fff;margin-bottom:4px}
    .entry-cell span{display:block;font-size:12px;color:#d7c4d9;line-height:1.55}
    .dark-stat-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:18px;
    }
    .dark-stat{
      border-radius:18px;
      padding:14px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.12);
    }
    .dark-stat strong{
      display:block;
      color:var(--amber);
      font-size:22px;
      line-height:1.1;
    }
    .dark-stat span{font-size:12px;color:#d9c6d9}
    .story-section{position:relative;background:var(--bg-soft)}
    .brand-card,
    .soft-card{
      background:var(--bg-card);
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:30px;
    }
    .brand-card{
      min-height:100%;
      background:
        radial-gradient(circle at 14% 10%,rgba(255,191,98,.20),transparent 24%),
        linear-gradient(180deg,#fffaf6,#fff4ee);
    }
    .principle-list{display:grid;gap:14px}
    .principle-item{
      display:flex;
      gap:14px;
      padding:18px;
      border-radius:20px;
      background:#fffaf6;
      border:1px solid var(--line);
      transition:.22s ease;
    }
    .principle-item:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(30,10,35,.08)}
    .icon-pill{
      width:42px;height:42px;
      border-radius:15px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,rgba(255,92,115,.16),rgba(95,36,121,.12));
      color:var(--rose);
      font-weight:900;
      flex:0 0 auto;
    }
    .principle-item h3{font-size:18px;margin:0 0 4px;font-weight:850}
    .principle-item p{margin:0;color:var(--text-soft);font-size:14px}
    .feature-section{background:#fff7f0}
    .feature-layout{
      display:grid;
      grid-template-columns:5fr 7fr;
      gap:22px;
      margin-top:32px;
    }
    .recommend-card{
      min-height:460px;
      background:
        radial-gradient(circle at 18% 12%,rgba(255,92,115,.20),transparent 34%),
        linear-gradient(145deg,#fffaf6,#fff1ea);
      border:1px solid var(--line);
      border-radius:30px;
      box-shadow:var(--shadow);
      padding:30px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:.24s ease;
    }
    .recommend-card:hover,
    .mini-card:hover,
    .topic-card:hover,
    .rank-item:hover{
      transform:translateY(-5px);
      border-color:rgba(255,92,115,.30);
      box-shadow:0 22px 56px rgba(30,10,35,.14);
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      width:max-content;
      padding:7px 11px;
      border-radius:var(--radius-pill);
      background:rgba(95,36,121,.09);
      color:var(--purple);
      border:1px solid rgba(95,36,121,.14);
      font-size:12px;
      font-weight:850;
    }
    .tag.hot{
      background:rgba(255,92,115,.12);
      color:#a51b48;
      border-color:rgba(255,92,115,.20);
    }
    .tag.amber{
      background:rgba(255,191,98,.18);
      color:#7a4700;
      border-color:rgba(255,191,98,.34);
    }
    .recommend-card h3{
      font-size:28px;
      line-height:1.18;
      margin:18px 0 10px;
      font-weight:900;
      letter-spacing:-.04em;
    }
    .info-points{
      list-style:none;
      padding:0;margin:18px 0 0;
      display:grid;gap:10px;
    }
    .info-points li{
      display:flex;
      gap:10px;
      color:var(--text-soft);
      font-size:15px;
    }
    .info-points li:before{
      content:"";
      width:9px;height:9px;border-radius:50%;
      background:var(--coral);
      margin-top:9px;
      box-shadow:0 0 0 4px rgba(255,92,115,.10);
      flex:0 0 auto;
    }
    .mini-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .mini-card{
      min-height:222px;
      padding:22px;
      border-radius:24px;
      background:var(--bg-card);
      border:1px solid var(--line);
      box-shadow:0 12px 34px rgba(30,10,35,.08);
      transition:.24s ease;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .mini-card h3{font-size:19px;font-weight:850;margin:12px 0 8px}
    .mini-card p{color:var(--text-soft);font-size:14px;margin:0}
    .mini-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      margin-top:16px;
      color:var(--rose);
      font-weight:850;
      font-size:14px;
    }
    .mini-link:hover{color:var(--purple);gap:10px}
    .update-bar{
      margin-top:18px;
      display:grid;
      grid-template-columns:1.2fr 1fr 1fr auto;
      gap:12px;
      align-items:center;
      padding:18px;
      border-radius:24px;
      background:#1c0b21;
      color:var(--text-on-dark);
      border:1px solid rgba(255,92,115,.24);
    }
    .progress-line{
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      overflow:hidden;
    }
    .progress-line span{
      display:block;height:100%;width:76%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--coral),var(--amber));
    }
    .topic-section{background:var(--bg-soft)}
    .topic-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      margin-top:30px;
    }
    .topic-card{
      padding:22px;
      border-radius:24px;
      background:#fffaf6;
      border:1px solid var(--line);
      transition:.24s ease;
      min-height:190px;
    }
    .topic-card h3{font-size:18px;font-weight:850;margin:14px 0 8px}
    .topic-card p{font-size:14px;color:var(--text-soft);margin:0}
    .rank-section{background:#fff7f0}
    .rank-wrap{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:22px;
      margin-top:30px;
    }
    .rank-list{
      background:var(--bg-card);
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .rank-item{
      display:grid;
      grid-template-columns:48px 1fr auto;
      gap:14px;
      align-items:center;
      padding:16px;
      border-radius:20px;
      border:1px solid transparent;
      transition:.22s ease;
    }
    .rank-item + .rank-item{border-top:1px solid rgba(48,22,58,.08)}
    .rank-num{
      width:42px;height:42px;border-radius:15px;
      display:grid;place-items:center;
      background:rgba(255,92,115,.10);
      color:var(--rose);
      font-weight:900;
    }
    .rank-item h3{font-size:17px;margin:0 0 2px;font-weight:850}
    .rank-item p{margin:0;color:var(--text-soft);font-size:13px}
    .rank-meter{
      display:flex;align-items:center;gap:9px;
      color:#7a4700;
      font-size:13px;
      font-weight:850;
      white-space:nowrap;
    }
    .side-note{
      background:
        radial-gradient(circle at 85% 12%,rgba(255,191,98,.18),transparent 30%),
        linear-gradient(145deg,#28102f,#160819);
      border:1px solid rgba(255,255,255,.14);
      color:var(--text-on-dark);
      border-radius:var(--radius-xl);
      padding:28px;
      box-shadow:0 20px 60px rgba(0,0,0,.18);
    }
    .side-note p{color:#dbc7dc}
    .timeline{
      margin-top:20px;
      display:grid;
      gap:14px;
    }
    .time-item{
      display:flex;
      gap:14px;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.11);
    }
    .time-dot{
      width:14px;height:14px;border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 20px rgba(255,191,98,.6);
      margin-top:6px;
      flex:0 0 auto;
    }
    .time-item b{display:block;margin-bottom:2px}
    .time-item span{display:block;color:#d7c4d9;font-size:13px}
    .progress-section{
      background:
        radial-gradient(circle at 8% 20%,rgba(255,92,115,.18),transparent 28%),
        linear-gradient(180deg,#1a0a1f,#120714);
      color:var(--text-on-dark);
    }
    .step-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      margin-top:30px;
    }
    .step-card{
      padding:22px;
      border-radius:24px;
      background:rgba(255,255,255,.075);
      border:1px solid rgba(255,255,255,.13);
      position:relative;
      overflow:hidden;
    }
    .step-card:before{
      content:attr(data-step);
      position:absolute;
      right:18px;top:10px;
      color:rgba(255,255,255,.10);
      font-size:54px;
      font-weight:900;
      line-height:1;
    }
    .step-card h3{font-size:18px;font-weight:850;margin:0 0 8px;position:relative}
    .step-card p{font-size:14px;color:#d9c6d9;margin:0;position:relative}
    .news-section{background:var(--bg-soft)}
    .news-layout{
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:22px;
      margin-top:30px;
    }
    .news-list,
    .changelog{
      background:var(--bg-card);
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:22px;
    }
    .news-row{
      display:grid;
      grid-template-columns:118px 1fr auto;
      gap:16px;
      align-items:center;
      padding:16px 0;
      border-bottom:1px solid rgba(48,22,58,.08);
    }
    .news-row:last-child{border-bottom:0}
    .news-date{
      font-weight:900;
      color:var(--rose);
      font-size:13px;
    }
    .news-row a{
      font-weight:850;
      color:var(--text);
    }
    .news-row a:hover{color:var(--rose)}
    .news-row p{margin:4px 0 0;color:var(--text-soft);font-size:14px}
    .changelog-item{
      padding:14px 0;
      border-bottom:1px solid rgba(48,22,58,.08);
    }
    .changelog-item:last-child{border-bottom:0}
    .changelog-item b{display:block;margin-bottom:3px}
    .changelog-item span{display:block;color:var(--text-soft);font-size:14px}
    .trust-section{background:#fff7f0}
    .trust-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      margin-top:30px;
    }
    .trust-card{
      padding:22px;
      border-radius:24px;
      background:var(--bg-card);
      border:1px solid var(--line);
      box-shadow:0 12px 30px rgba(30,10,35,.07);
    }
    .trust-card strong{display:block;font-size:24px;color:var(--purple);font-weight:900}
    .trust-card span{display:block;color:var(--text-soft);font-size:14px;margin-top:4px}
    .compliance-card{
      margin-top:18px;
      padding:22px;
      border-radius:24px;
      background:linear-gradient(135deg,rgba(255,191,98,.18),rgba(255,92,115,.08));
      border:1px solid rgba(255,191,98,.32);
      display:flex;
      align-items:flex-start;
      gap:16px;
    }
    .cta-section{
      background:
        radial-gradient(circle at 18% 10%,rgba(255,92,115,.22),transparent 28%),
        radial-gradient(circle at 85% 40%,rgba(255,191,98,.15),transparent 28%),
        linear-gradient(135deg,#210b29,#120714);
      color:var(--text-on-dark);
    }
    .cta-panel{
      border-radius:34px;
      padding:34px;
      border:1px solid rgba(255,255,255,.15);
      background:rgba(255,255,255,.065);
      box-shadow:0 28px 80px rgba(0,0,0,.24);
      display:grid;
      grid-template-columns:1fr .9fr;
      gap:28px;
      align-items:center;
    }
    .cta-panel p{color:#dfcde1;margin:12px 0 0}
    .subscribe-box{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.13);
      border-radius:24px;
      padding:20px;
    }
    .form-control{
      border-radius:16px;
      min-height:52px;
      border:1px solid rgba(59,21,80,.16);
      background:#fffaf6;
      color:var(--text);
      padding:12px 16px;
    }
    .form-control::placeholder{color:#a392a4}
    .form-check-input{
      border-color:rgba(255,255,255,.35);
      background-color:rgba(255,255,255,.08);
    }
    .form-check-input:checked{
      background-color:var(--coral);
      border-color:var(--coral);
    }
    .form-hint{font-size:12px;color:#d9c6d9;margin-top:10px}
    .faq-section{background:var(--bg-soft)}
    .accordion{
      margin-top:28px;
      border-radius:var(--radius-xl);
      overflow:hidden;
      box-shadow:var(--shadow);
      border:1px solid var(--line);
    }
    .accordion-item{
      background:var(--bg-card);
      border:0;
      border-bottom:1px solid rgba(48,22,58,.08);
    }
    .accordion-item:last-child{border-bottom:0}
    .accordion-button{
      background:var(--bg-card);
      color:var(--text);
      font-weight:850;
      padding:20px 22px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--purple);
      background:#fff3eb;
    }
    .accordion-button:focus{
      border-color:transparent;
      box-shadow:inset 0 0 0 3px rgba(255,191,98,.24)!important;
    }
    .accordion-body{
      color:var(--text-soft);
      padding:0 22px 22px;
      font-size:15px;
    }
    .site-footer{
      background:#120714;
      color:var(--text-on-dark);
      padding:54px 0 28px;
      border-top:1px solid rgba(255,255,255,.12);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr .8fr;
      gap:24px;
    }
    .footer-title{
      font-weight:900;
      margin-bottom:14px;
      color:#fff;
    }
    .footer-links{
      list-style:none;padding:0;margin:0;display:grid;gap:9px;
    }
    .footer-links a{
      color:#d8c7d8;
      font-size:14px;
    }
    .footer-links a:hover{color:#fff;padding-left:3px}
    .footer-note{
      color:#d8c7d8;
      font-size:14px;
      max-width:430px;
      margin-top:14px;
    }
    .copyright{
      margin-top:34px;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      color:#bdaabd;
      font-size:13px;
    }
    .modal-content{
      background:
        radial-gradient(circle at 20% 12%,rgba(255,92,115,.22),transparent 32%),
        linear-gradient(145deg,#211027,#120714);
      color:var(--text-on-dark);
      border:1px solid rgba(255,92,115,.30);
      border-radius:28px;
      box-shadow:0 28px 100px rgba(0,0,0,.45);
    }
    .modal-header,.modal-footer{border-color:rgba(255,255,255,.12)}
    .modal-body p{color:#dfcde1}
    .toast{
      border-radius:18px;
      background:#fffaf6;
      border:1px solid rgba(255,92,115,.22);
      box-shadow:var(--shadow);
    }
    @media (max-width:1199px){
      .container{max-width:1040px}
      .topic-grid,.trust-grid,.step-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991px){
      .desktop-nav,.nav-cta{display:none!important}
      .mobile-toggler{display:flex}
      .hero{padding:54px 0 64px;min-height:auto}
      .hero-grid,.feature-layout,.rank-wrap,.news-layout,.cta-panel{grid-template-columns:1fr}
      .countdown-card{grid-template-columns:140px 1fr}
      .count-ring{width:138px;height:138px}
      .update-bar{grid-template-columns:1fr 1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:767px){
      .top-strip-inner{align-items:flex-start;flex-direction:column;padding:10px 0;gap:8px}
      .section-pad{padding:64px 0}
      .section-pad-sm{padding:48px 0}
      .hero-stage{padding:22px;border-radius:26px}
      .hero h1{font-size:clamp(34px,10vw,40px)}
      .hero-lead{font-size:15px}
      .hero-actions .btn-main,.hero-actions .btn-ghost{width:100%}
      .countdown-card{grid-template-columns:1fr;text-align:center}
      .count-ring{margin:0 auto}
      .entry-matrix,.mini-grid,.topic-grid,.trust-grid,.step-grid{grid-template-columns:1fr}
      .dark-stat-row{grid-template-columns:1fr}
      .update-bar{grid-template-columns:1fr}
      .news-row{grid-template-columns:1fr;gap:6px}
      .rank-item{grid-template-columns:42px 1fr;align-items:start}
      .rank-meter{grid-column:2}
      .cta-panel{padding:24px;border-radius:26px}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column}
    }
    @media (max-width:480px){
      .brand-logo{font-size:16px}
      .brand-mark{width:38px;height:38px}
      .count-ring{width:124px;height:124px}
      .count-ring strong{font-size:28px}
      .brand-card,.soft-card,.recommend-card{padding:22px;border-radius:24px}
      .section-title{font-size:28px}
    }

/* roulang page: category1 */
:root{
      --bg-night:#110812;
      --bg-stage:#1b0b20;
      --bg-cherry:#2a0f25;
      --bg-soft:#fff8f2;
      --bg-warm:#f7efe8;
      --ink:#231625;
      --muted:#766778;
      --white:#ffffff;
      --purple:#321244;
      --purple-2:#572069;
      --coral:#ff5d73;
      --rose:#c43d85;
      --amber:#ffc65a;
      --gold:#f2a83b;
      --line:rgba(55,24,66,.12);
      --line-dark:rgba(255,255,255,.16);
      --glow:0 22px 70px rgba(255,93,115,.25);
      --shadow:0 18px 48px rgba(40,16,48,.12);
      --shadow-soft:0 12px 34px rgba(38,17,43,.08);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --container:1200px;
      --font:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--ink);
      background:
        radial-gradient(circle at 10% 0%, rgba(255,93,115,.13), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(255,198,90,.12), transparent 24%),
        linear-gradient(180deg, var(--bg-night) 0%, var(--bg-stage) 28%, var(--bg-warm) 28%, var(--bg-soft) 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    a:hover{color:var(--coral)}
    img{max-width:100%;height:auto}
    button,input{font-family:inherit}
    :focus-visible{outline:3px solid rgba(255,198,90,.85);outline-offset:3px}
    .container{max-width:var(--container)}

    .top-ribbon{
      background:linear-gradient(90deg, rgba(20,8,24,.95), rgba(61,19,69,.94), rgba(24,8,27,.96));
      border-bottom:1px solid rgba(255,93,115,.24);
      color:#fff;
      font-size:13px;
      letter-spacing:.01em;
    }
    .top-ribbon .container{
      min-height:42px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .ribbon-left,.ribbon-right{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(18,8,22,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.12);
      box-shadow:0 12px 34px rgba(0,0,0,.24);
    }
    .navbar{padding:14px 0}
    .brand-logo{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-weight:850;
      letter-spacing:-.02em;
      font-size:20px;
      white-space:nowrap;
    }
    .brand-logo:hover{color:#fff;filter:brightness(1.08)}
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      display:inline-grid;
      place-items:center;
      color:#1b0b20;
      font-size:14px;
      font-weight:900;
      background:linear-gradient(135deg,var(--amber),#ff7a76 56%,#d84896);
      box-shadow:0 10px 26px rgba(255,93,115,.32);
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:8px;
      margin-left:34px;
    }
    .nav-link-custom{
      color:rgba(255,255,255,.76);
      font-size:14px;
      font-weight:700;
      padding:10px 15px;
      border-radius:var(--radius-pill);
      border:1px solid transparent;
    }
    .nav-link-custom:hover{
      color:#fff;
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.12);
    }
    .nav-link-custom.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(255,93,115,.25),rgba(255,198,90,.13));
      border-color:rgba(255,93,115,.42);
      box-shadow:inset 0 0 18px rgba(255,93,115,.12);
    }
    .nav-cta{margin-left:auto}
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:var(--radius-pill);
      padding:8px 12px;
      font-size:12px;
      font-weight:850;
      line-height:1;
      letter-spacing:.02em;
      border:1px solid rgba(255,255,255,.16);
      white-space:nowrap;
    }
    .badge-soft.amber{color:#2b1704;background:linear-gradient(135deg,#ffe2a0,#ffbd4a);border-color:rgba(255,198,90,.7)}
    .badge-soft.coral{color:#fff;background:linear-gradient(135deg,var(--coral),var(--rose));border-color:rgba(255,93,115,.7)}
    .badge-soft.dark{color:#fff;background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.16)}
    .badge-soft.light{color:var(--purple);background:#fff2df;border-color:rgba(242,168,59,.35)}
    .btn-main,.btn-ghost,.btn-mini{
      border:0;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:var(--radius-pill);
      font-weight:850;
      transition:.22s ease;
      text-decoration:none;
      white-space:nowrap;
      cursor:pointer;
    }
    .btn-main{
      color:#fff;
      background:linear-gradient(135deg,var(--coral),var(--rose) 58%,#7a2fa0);
      padding:12px 20px;
      box-shadow:0 14px 34px rgba(255,93,115,.28);
    }
    .btn-main:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 20px 46px rgba(255,93,115,.36);
      filter:saturate(1.08);
    }
    .btn-ghost{
      color:#fff;
      border:1px solid rgba(255,255,255,.22);
      background:rgba(255,255,255,.07);
      padding:12px 20px;
    }
    .btn-ghost:hover{color:#fff;background:rgba(255,255,255,.13);transform:translateY(-2px)}
    .btn-mini{
      color:var(--purple);
      background:#fff1e5;
      border:1px solid rgba(255,93,115,.13);
      padding:9px 13px;
      font-size:13px;
    }
    .btn-mini:hover{color:#fff;background:linear-gradient(135deg,var(--coral),var(--rose));transform:translateY(-1px)}
    .mobile-toggler{
      display:none;
      width:44px;
      height:44px;
      border:1px solid rgba(255,255,255,.16);
      border-radius:14px;
      color:#fff;
      background:rgba(255,255,255,.08);
      font-size:22px;
      line-height:1;
    }

    .offcanvas{
      background:linear-gradient(180deg,#19091d,#2b102d);
      color:#fff;
    }
    .offcanvas-header{border-bottom:1px solid rgba(255,255,255,.12)}
    .btn-close{filter:invert(1);opacity:.9}
    .mobile-menu-links{display:grid;gap:10px;margin-top:18px}
    .mobile-menu-links .nav-link-custom{display:block;color:#fff}

    .hero-compact{
      position:relative;
      color:#fff;
      padding:68px 0 54px;
      overflow:hidden;
      background:
        radial-gradient(circle at 12% 18%, rgba(255,93,115,.24), transparent 29%),
        radial-gradient(circle at 78% 5%, rgba(255,198,90,.18), transparent 22%),
        radial-gradient(circle at 50% 95%, rgba(196,61,133,.22), transparent 34%),
        linear-gradient(135deg,#130817 0%,#24102b 48%,#160916 100%);
    }
    .hero-compact:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(180deg,rgba(0,0,0,.95),rgba(0,0,0,.35));
      pointer-events:none;
    }
    .hero-compact:after{
      content:"";
      position:absolute;
      left:50%;
      top:-80px;
      width:520px;
      height:520px;
      transform:translateX(-50%);
      background:radial-gradient(circle,rgba(255,255,255,.08),transparent 62%);
      pointer-events:none;
    }
    .hero-inner{position:relative;z-index:1}
    .breadcrumb-soft{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.68);
      font-size:13px;
      margin-bottom:18px;
    }
    .breadcrumb-soft a{color:#fff;font-weight:800}
    h1{
      font-size:clamp(34px,5.2vw,58px);
      line-height:1.1;
      font-weight:900;
      letter-spacing:-.045em;
      margin:0 0 18px;
      max-width:820px;
    }
    .hero-lead{
      color:rgba(255,255,255,.78);
      font-size:17px;
      max-width:760px;
      margin:0;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
    .stage-status{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.17);
      border-radius:var(--radius-xl);
      padding:22px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08), var(--glow);
      backdrop-filter:blur(14px);
    }
    .status-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:18px;
    }
    .pulse-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--coral);
      box-shadow:0 0 0 7px rgba(255,93,115,.14),0 0 22px rgba(255,93,115,.72);
    }
    .countdown-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin:16px 0;
    }
    .time-box{
      border-radius:18px;
      background:rgba(0,0,0,.2);
      border:1px solid rgba(255,255,255,.12);
      padding:14px 10px;
      text-align:center;
    }
    .time-box strong{display:block;font-size:25px;line-height:1;font-weight:900;color:#fff}
    .time-box span{display:block;margin-top:6px;font-size:12px;color:rgba(255,255,255,.62)}
    .status-list{display:grid;gap:10px;margin:0;padding:0;list-style:none}
    .status-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:rgba(255,255,255,.78);
      font-size:14px;
      padding-top:10px;
      border-top:1px solid rgba(255,255,255,.1);
    }
    .status-list i{
      width:20px;
      height:20px;
      border-radius:50%;
      flex:0 0 auto;
      background:linear-gradient(135deg,var(--amber),var(--coral));
      display:inline-grid;
      place-items:center;
      color:#201020;
      font-style:normal;
      font-size:12px;
      font-weight:900;
    }

    main{background:linear-gradient(180deg,var(--bg-warm),var(--bg-soft));}
    .section{padding:78px 0}
    .section-tight{padding:56px 0}
    .section-title-wrap{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:22px;
      margin-bottom:28px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--rose);
      font-size:13px;
      font-weight:900;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:10px;
    }
    .eyebrow:before{
      content:"";
      width:28px;
      height:3px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--coral),var(--amber));
    }
    h2{
      font-size:clamp(28px,3.2vw,38px);
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.035em;
      margin:0;
      color:var(--ink);
    }
    .section-desc{
      margin:10px 0 0;
      color:var(--muted);
      max-width:680px;
      font-size:16px;
    }

    .filter-panel{
      position:relative;
      margin-top:-34px;
      z-index:3;
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:20px;
    }
    .filter-row{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }
    .filter-label{
      font-size:13px;
      font-weight:900;
      color:var(--purple);
      margin-right:2px;
    }
    .filter-chip{
      border:1px solid rgba(87,32,105,.13);
      background:#fff9f3;
      color:#5f4a61;
      border-radius:999px;
      padding:9px 14px;
      font-size:13px;
      font-weight:850;
      transition:.2s ease;
    }
    .filter-chip:hover,.filter-chip.active{
      color:#fff;
      background:linear-gradient(135deg,var(--purple-2),var(--rose));
      border-color:rgba(196,61,133,.55);
      box-shadow:0 10px 24px rgba(196,61,133,.18);
    }
    .search-box{
      margin-left:auto;
      min-width:260px;
      position:relative;
    }
    .search-box input{
      width:100%;
      border-radius:999px;
      border:1px solid rgba(87,32,105,.15);
      padding:11px 15px 11px 40px;
      color:var(--ink);
      background:#fff;
      outline:none;
      transition:.2s ease;
    }
    .search-box input:focus{
      border-color:rgba(255,93,115,.6);
      box-shadow:0 0 0 4px rgba(255,93,115,.12);
    }
    .search-box span{
      position:absolute;
      left:15px;
      top:50%;
      transform:translateY(-50%);
      color:var(--rose);
      font-weight:900;
    }

    .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 330px;
      gap:24px;
      align-items:start;
    }
    .feature-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      overflow:hidden;
      transition:.24s ease;
    }
    .feature-card:hover,.compact-card:hover,.side-card:hover{
      transform:translateY(-4px);
      border-color:rgba(255,93,115,.35);
      box-shadow:0 24px 58px rgba(40,16,48,.16);
    }
    .abstract-cover{
      min-height:210px;
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 18% 24%, rgba(255,198,90,.48), transparent 20%),
        radial-gradient(circle at 70% 18%, rgba(255,93,115,.42), transparent 26%),
        radial-gradient(circle at 60% 90%, rgba(87,32,105,.55), transparent 34%),
        linear-gradient(135deg,#2c1036,#4b174d 48%,#190b20);
    }
    .abstract-cover:before{
      content:"";
      position:absolute;
      inset:18px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.18);
      background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
    }
    .cover-labels{
      position:absolute;
      left:20px;
      right:20px;
      bottom:20px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .feature-body{padding:24px}
    .card-title{
      font-size:24px;
      line-height:1.25;
      font-weight:900;
      letter-spacing:-.025em;
      margin:0 0 10px;
      color:var(--ink);
    }
    .card-text{color:var(--muted);margin:0 0 18px;font-size:15px}
    .point-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin:18px 0 20px;
    }
    .point{
      border-radius:18px;
      background:#fff7ee;
      border:1px solid rgba(242,168,59,.22);
      padding:13px;
    }
    .point strong{display:block;color:var(--purple);font-size:18px;font-weight:900}
    .point span{display:block;color:var(--muted);font-size:12px;margin-top:2px}
    .compact-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
      margin-top:16px;
    }
    .compact-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:20px;
      box-shadow:var(--shadow-soft);
      transition:.24s ease;
      min-height:230px;
      display:flex;
      flex-direction:column;
    }
    .compact-card .icon{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,#fff0da,#ffd0d8);
      color:var(--rose);
      font-size:22px;
      font-weight:900;
      margin-bottom:14px;
    }
    .compact-card h3{
      margin:0 0 8px;
      font-size:19px;
      font-weight:900;
      color:var(--ink);
    }
    .compact-card p{
      color:var(--muted);
      margin:0 0 14px;
      font-size:14px;
      flex:1;
    }
    .mini-list{
      list-style:none;
      padding:0;
      margin:0 0 16px;
      display:grid;
      gap:7px;
      color:#5d4c60;
      font-size:13px;
    }
    .mini-list li{display:flex;gap:8px;align-items:flex-start}
    .mini-list li:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--coral);
      flex:0 0 auto;
      margin-top:8px;
    }

    .side-stack{
      position:sticky;
      top:102px;
      display:grid;
      gap:16px;
    }
    .side-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      padding:22px;
      box-shadow:var(--shadow-soft);
      transition:.24s ease;
    }
    .side-card.dark{
      color:#fff;
      background:
        radial-gradient(circle at 20% 10%,rgba(255,93,115,.22),transparent 28%),
        linear-gradient(145deg,#1a0a1f,#301236);
      border-color:rgba(255,255,255,.12);
    }
    .side-card h3{
      font-size:20px;
      font-weight:900;
      margin:0 0 12px;
    }
    .side-card p{font-size:14px;color:var(--muted);margin:0}
    .side-card.dark p{color:rgba(255,255,255,.74)}
    .side-links{
      display:grid;
      gap:10px;
      margin-top:16px;
    }
    .side-links a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      border-radius:16px;
      padding:12px 14px;
      background:#fff8f1;
      border:1px solid rgba(242,168,59,.2);
      color:var(--purple);
      font-size:14px;
      font-weight:850;
    }
    .side-links a:hover{background:#ffe8d4;color:var(--rose)}
    .safety-box{
      border-left:4px solid var(--amber);
      padding:12px 14px;
      border-radius:16px;
      background:#fff7e6;
      color:#5d3b16;
      font-size:14px;
      margin-top:14px;
    }

    .update-strip{
      margin-top:22px;
      border-radius:var(--radius-xl);
      color:#fff;
      padding:22px;
      background:
        radial-gradient(circle at 10% 20%,rgba(255,198,90,.2),transparent 25%),
        linear-gradient(135deg,#231029,#451848);
      border:1px solid rgba(255,255,255,.12);
      display:grid;
      grid-template-columns:1.3fr 1fr auto;
      gap:18px;
      align-items:center;
      box-shadow:var(--shadow);
    }
    .progress-soft{
      height:12px;
      background:rgba(255,255,255,.13);
      border-radius:999px;
      overflow:hidden;
    }
    .progress-soft span{
      display:block;
      width:72%;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--amber),var(--coral),var(--rose));
      box-shadow:0 0 18px rgba(255,93,115,.5);
    }

    .principle-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .principle-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:22px;
      box-shadow:var(--shadow-soft);
    }
    .principle-card strong{
      display:block;
      color:var(--purple);
      font-size:19px;
      font-weight:900;
      margin-bottom:8px;
    }
    .principle-card p{margin:0;color:var(--muted);font-size:14px}

    .cta-panel{
      color:#fff;
      border-radius:34px;
      padding:34px;
      background:
        radial-gradient(circle at 85% 20%,rgba(255,198,90,.2),transparent 24%),
        radial-gradient(circle at 20% 80%,rgba(255,93,115,.22),transparent 30%),
        linear-gradient(135deg,#16081b,#3a1642 58%,#1b091f);
      border:1px solid rgba(255,255,255,.13);
      box-shadow:var(--glow);
    }
    .cta-panel h2{color:#fff}
    .cta-panel p{color:rgba(255,255,255,.74)}
    .subscribe-form{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      border-radius:24px;
      padding:18px;
    }
    .form-control{
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      padding:13px 16px;
      background:rgba(255,255,255,.95);
      color:var(--ink);
    }
    .form-control:focus{
      border-color:rgba(255,93,115,.62);
      box-shadow:0 0 0 4px rgba(255,93,115,.14);
    }
    .form-check-label{font-size:13px;color:rgba(255,255,255,.74)}
    .form-check-input:checked{background-color:var(--coral);border-color:var(--coral)}

    .accordion{display:grid;gap:12px}
    .accordion-item{
      border:1px solid var(--line)!important;
      border-radius:20px!important;
      overflow:hidden;
      background:#fff;
      box-shadow:var(--shadow-soft);
    }
    .accordion-button{
      font-weight:900;
      color:var(--ink);
      background:#fff;
      padding:18px 20px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--purple);
      background:#fff6ee;
    }
    .accordion-button:after{filter:hue-rotate(120deg) saturate(1.2)}
    .accordion-body{
      color:var(--muted);
      padding:0 20px 20px;
      font-size:15px;
    }

    .site-footer{
      background:linear-gradient(180deg,#160819,#0f0611);
      color:#fff;
      padding:58px 0 26px;
      border-top:1px solid rgba(255,255,255,.12);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .8fr .8fr .8fr;
      gap:34px;
      padding-bottom:32px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-note{
      color:rgba(255,255,255,.66);
      margin:16px 0 0;
      max-width:420px;
      font-size:14px;
    }
    .footer-title{
      font-size:14px;
      font-weight:900;
      color:#fff;
      margin-bottom:14px;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(255,255,255,.66);
      font-size:14px;
    }
    .footer-links a:hover{color:var(--amber)}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.52);
      font-size:13px;
      padding-top:20px;
    }

    .modal-content{
      color:#fff;
      background:
        radial-gradient(circle at 20% 15%,rgba(255,93,115,.22),transparent 28%),
        linear-gradient(145deg,#18091c,#32123a);
      border:1px solid rgba(255,255,255,.16);
      border-radius:28px;
      box-shadow:var(--glow);
      overflow:hidden;
    }
    .modal-header,.modal-footer{border-color:rgba(255,255,255,.12)}
    .modal-title{font-weight:900}
    .modal-body{color:rgba(255,255,255,.76)}

    @media (max-width:1199px){
      .desktop-nav{margin-left:18px}
      .nav-link-custom{padding:9px 12px}
      .content-layout{grid-template-columns:minmax(0,1fr) 300px}
      .principle-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991px){
      .desktop-nav,.nav-cta{display:none!important}
      .mobile-toggler{display:inline-grid;place-items:center}
      .hero-compact{padding:52px 0 46px}
      .stage-status{margin-top:26px}
      .content-layout{grid-template-columns:1fr}
      .side-stack{position:static;grid-template-columns:repeat(2,1fr)}
      .update-strip{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .section-title-wrap{display:block}
      .search-box{margin-left:0;width:100%;min-width:0}
    }
    @media (max-width:767px){
      .top-ribbon .container{justify-content:center;text-align:center}
      .brand-logo{font-size:17px}
      .brand-mark{width:38px;height:38px;border-radius:13px}
      h1{font-size:clamp(32px,9vw,40px)}
      .hero-lead{font-size:15px}
      .hero-actions .btn-main,.hero-actions .btn-ghost{width:100%}
      .filter-panel{margin-top:-18px;padding:16px}
      .filter-row{align-items:stretch}
      .filter-chip{flex:1 1 auto;text-align:center}
      .compact-grid{grid-template-columns:1fr}
      .point-grid{grid-template-columns:1fr}
      .side-stack{grid-template-columns:1fr}
      .principle-grid{grid-template-columns:1fr}
      .section{padding:58px 0}
      .cta-panel{padding:24px;border-radius:26px}
      .footer-grid{grid-template-columns:1fr}
      .copyright{display:grid}
      .countdown-grid{gap:8px}
      .time-box strong{font-size:21px}
    }
    @media (max-width:480px){
      .badge-soft{white-space:normal;line-height:1.25}
      .status-head{align-items:flex-start;flex-direction:column}
      .abstract-cover{min-height:180px}
      .feature-body,.compact-card,.side-card{padding:18px}
      .card-title{font-size:21px}
    }

/* roulang page: category2 */
:root{
      --bg-deep:#130416;
      --bg-deeper:#08020a;
      --bg-plum:#1b061f;
      --bg-cherry:#2a071d;
      --bg-soft:#fbf6ef;
      --surface:#fffaf3;
      --surface-2:#f4ece4;
      --text:#26172b;
      --muted:#776679;
      --muted-light:#cdbcd0;
      --white:#ffffff;
      --primary:#5b1b78;
      --primary-2:#8d2aa0;
      --coral:#ff5b6e;
      --rose:#c93686;
      --amber:#f6b84b;
      --gold:#ffd37a;
      --line:rgba(48,22,56,.12);
      --line-dark:rgba(255,255,255,.14);
      --shadow:0 18px 48px rgba(36,9,42,.14);
      --shadow-strong:0 22px 70px rgba(255,91,110,.24);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --container:1200px;
      --font:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 8% 0%, rgba(255,91,110,.12), transparent 34%),
        radial-gradient(circle at 92% 10%, rgba(141,42,160,.18), transparent 34%),
        linear-gradient(180deg,var(--bg-deeper) 0,var(--bg-plum) 23%,var(--bg-soft) 23%,var(--bg-soft) 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    a:hover{color:inherit}
    img{max-width:100%;height:auto}
    button,input{font:inherit}
    ::selection{background:rgba(255,91,110,.35);color:#fff}
    .container{max-width:var(--container)}
    .section{padding:84px 0}
    .section-tight{padding:58px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      font-size:13px;
      font-weight:800;
      letter-spacing:.04em;
      color:#ffe8ee;
      background:rgba(255,91,110,.14);
      border:1px solid rgba(255,91,110,.28);
    }
    .section-kicker{
      color:var(--coral);
      font-size:13px;
      font-weight:850;
      letter-spacing:.12em;
      text-transform:uppercase;
      margin-bottom:10px;
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(34px,5vw,62px);
      line-height:1.1;
      font-weight:900;
      letter-spacing:-.045em;
      color:#fff;
      margin-bottom:18px;
    }
    h2{
      font-size:clamp(28px,3.2vw,38px);
      line-height:1.18;
      font-weight:850;
      letter-spacing:-.03em;
      margin-bottom:16px;
      color:#2a1230;
    }
    h3{
      font-size:20px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:10px;
      color:#2c1731;
    }
    p{color:var(--muted);font-size:16px}
    .lead-text{font-size:17px;color:#eaddec;max-width:760px}
    .text-light-muted{color:var(--muted-light)}
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(17,4,20,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.10);
      box-shadow:0 12px 28px rgba(0,0,0,.20);
    }
    .navbar{padding:14px 0}
    .brand-logo{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-weight:900;
      letter-spacing:-.02em;
      white-space:nowrap;
    }
    .brand-logo:hover{color:#fff}
    .brand-mark{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:42px;
      height:34px;
      padding:0 9px;
      border-radius:12px;
      color:#1d061e;
      background:linear-gradient(135deg,var(--gold),var(--coral));
      box-shadow:0 0 24px rgba(246,184,75,.34);
      font-size:14px;
      font-weight:950;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:8px;
      margin-left:36px;
    }
    .nav-link-custom{
      display:inline-flex;
      align-items:center;
      padding:9px 14px;
      border-radius:var(--radius-pill);
      color:#d9cadb;
      font-size:14px;
      font-weight:750;
      transition:.22s ease;
      border:1px solid transparent;
    }
    .nav-link-custom:hover{
      color:#fff;
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.12);
    }
    .nav-link-custom.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(255,91,110,.24),rgba(141,42,160,.26));
      border-color:rgba(255,91,110,.36);
      box-shadow:inset 0 0 18px rgba(255,91,110,.12);
    }
    .nav-cta{margin-left:auto}
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 11px;
      border-radius:var(--radius-pill);
      font-size:12px;
      line-height:1;
      font-weight:850;
      white-space:nowrap;
      border:1px solid rgba(255,255,255,.14);
      color:#fff;
      background:rgba(255,255,255,.08);
    }
    .badge-soft.amber{
      color:#2b1400;
      background:linear-gradient(135deg,#ffd37a,#ffb35c);
      border-color:rgba(255,211,122,.55);
      box-shadow:0 0 20px rgba(246,184,75,.24);
    }
    .badge-soft.coral{
      color:#fff;
      background:linear-gradient(135deg,var(--coral),var(--rose));
      border-color:rgba(255,91,110,.55);
    }
    .badge-soft.dark{
      color:#f5e8f6;
      background:rgba(36,8,42,.70);
      border-color:rgba(255,255,255,.13);
    }
    .btn-main,.btn-ghost,.btn-lightline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:var(--radius-pill);
      padding:11px 18px;
      min-height:44px;
      font-weight:850;
      font-size:14px;
      border:0;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
      cursor:pointer;
    }
    .btn-main{
      color:#fff;
      background:linear-gradient(135deg,var(--coral),var(--rose) 52%,var(--primary-2));
      box-shadow:0 12px 30px rgba(255,91,110,.30);
    }
    .btn-main:hover,.btn-main:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(255,91,110,.38);
    }
    .btn-ghost{
      color:#fff;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.18);
    }
    .btn-ghost:hover,.btn-ghost:focus{
      color:#fff;
      background:rgba(255,255,255,.12);
      transform:translateY(-2px);
    }
    .btn-lightline{
      color:#3d1742;
      background:#fff;
      border:1px solid rgba(83,32,94,.16);
      box-shadow:0 10px 24px rgba(38,12,45,.08);
    }
    .btn-lightline:hover,.btn-lightline:focus{
      color:#2c0f31;
      border-color:rgba(255,91,110,.34);
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(38,12,45,.12);
    }
    a:focus-visible,button:focus-visible,input:focus-visible,.form-check-input:focus-visible{
      outline:3px solid rgba(255,211,122,.75);
      outline-offset:3px;
      box-shadow:none;
    }
    .mobile-toggler{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.08);
      color:#fff;
      font-size:22px;
      line-height:1;
    }
    .offcanvas{
      background:
        radial-gradient(circle at 100% 0,rgba(255,91,110,.20),transparent 35%),
        linear-gradient(180deg,#160519,#09020b);
      color:#fff;
    }
    .offcanvas-header{border-bottom:1px solid rgba(255,255,255,.12)}
    .btn-close{filter:invert(1);opacity:.85}
    .mobile-nav-list{display:grid;gap:10px;margin-top:20px}
    .mobile-nav-list .nav-link-custom{justify-content:space-between;padding:13px 14px}
    .page-hero{
      position:relative;
      overflow:hidden;
      padding:82px 0 74px;
      background:
        radial-gradient(circle at 50% -20%,rgba(255,91,110,.33),transparent 32%),
        radial-gradient(circle at 12% 25%,rgba(141,42,160,.45),transparent 38%),
        radial-gradient(circle at 88% 20%,rgba(246,184,75,.18),transparent 30%),
        linear-gradient(135deg,#08020a 0,#210721 48%,#390a2a 100%);
    }
    .page-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:44px 44px;
      mask-image:linear-gradient(180deg,rgba(0,0,0,.65),transparent 85%);
      pointer-events:none;
    }
    .page-hero:after{
      content:"";
      position:absolute;
      left:0;right:0;bottom:-1px;height:90px;
      background:linear-gradient(180deg,transparent,var(--bg-soft));
      pointer-events:none;
    }
    .hero-inner{position:relative;z-index:1}
    .hero-search-panel{
      max-width:900px;
      margin:28px auto 0;
      padding:18px;
      border-radius:28px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.18);
      box-shadow:0 24px 80px rgba(0,0,0,.28);
      backdrop-filter:blur(14px);
    }
    .search-row{
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
      align-items:center;
      background:#fff;
      border-radius:999px;
      padding:8px;
      border:1px solid rgba(255,91,110,.18);
    }
    .search-row input{
      border:0;
      background:transparent;
      padding:0 18px;
      height:48px;
      color:#32143a;
      outline:0;
      min-width:0;
    }
    .quick-tags{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:10px;
      margin-top:16px;
    }
    .quick-tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 12px;
      border-radius:999px;
      color:#f2e3f4;
      font-size:13px;
      font-weight:800;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.15);
      transition:.22s ease;
    }
    .quick-tag:hover{
      transform:translateY(-2px);
      background:rgba(255,91,110,.16);
      border-color:rgba(255,91,110,.34);
    }
    .stage-strip{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:12px;
      margin-top:22px;
    }
    .count-card{
      min-width:116px;
      padding:12px 16px;
      border-radius:18px;
      background:rgba(15,3,18,.62);
      border:1px solid rgba(255,255,255,.13);
      color:#fff;
      text-align:center;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
    }
    .count-card strong{
      display:block;
      font-size:22px;
      line-height:1.1;
      color:var(--gold);
      letter-spacing:-.03em;
    }
    .count-card span{
      color:#d7c5d9;
      font-size:12px;
      font-weight:750;
    }
    .step-card,.entry-card,.timeline-card,.notice-card,.faq-card,.subscribe-box{
      border-radius:var(--radius-lg);
      background:var(--surface);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .step-card:hover,.entry-card:hover,.timeline-card:hover{
      transform:translateY(-4px);
      box-shadow:0 24px 58px rgba(36,9,42,.16);
      border-color:rgba(255,91,110,.28);
    }
    .steps-wrap{
      margin-top:-42px;
      position:relative;
      z-index:2;
    }
    .step-card{
      padding:24px;
      height:100%;
    }
    .step-num{
      width:42px;
      height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:15px;
      color:#fff;
      font-weight:950;
      background:linear-gradient(135deg,var(--primary),var(--coral));
      box-shadow:0 12px 24px rgba(255,91,110,.20);
      margin-bottom:16px;
    }
    .step-card p{font-size:15px;margin-bottom:0}
    .guide-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 340px;
      gap:28px;
      align-items:start;
    }
    .guide-panel{
      padding:30px;
      border-radius:var(--radius-xl);
      background:linear-gradient(180deg,#fffaf3,#f7eee6);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .check-list{
      display:grid;
      gap:14px;
      padding:0;
      margin:22px 0 0;
      list-style:none;
    }
    .check-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(48,22,56,.08);
    }
    .check-icon{
      width:28px;
      height:28px;
      flex:0 0 28px;
      border-radius:10px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:linear-gradient(135deg,var(--coral),var(--rose));
      font-size:14px;
      font-weight:900;
    }
    .side-sticky{
      position:sticky;
      top:94px;
      padding:24px;
      border-radius:var(--radius-xl);
      color:#fff;
      background:
        radial-gradient(circle at 100% 0,rgba(255,91,110,.25),transparent 38%),
        linear-gradient(145deg,#19051d,#2b082b);
      border:1px solid rgba(255,255,255,.14);
      box-shadow:0 22px 60px rgba(16,3,18,.28);
    }
    .side-sticky h3{color:#fff}
    .side-list{
      display:grid;
      gap:12px;
      margin:18px 0 22px;
      padding:0;
      list-style:none;
    }
    .side-list li{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:12px;
      border-radius:16px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
      color:#eaddec;
      font-size:14px;
      font-weight:700;
    }
    .side-list b{color:var(--gold)}
    .entry-matrix{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .entry-card{
      position:relative;
      overflow:hidden;
      min-height:210px;
      padding:24px;
    }
    .entry-card:before{
      content:"";
      position:absolute;
      width:140px;height:140px;
      right:-54px;top:-54px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,91,110,.22),transparent 68%);
    }
    .entry-card .icon-box{
      width:46px;height:46px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:16px;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--rose));
      box-shadow:0 12px 28px rgba(93,27,120,.18);
      margin-bottom:16px;
      font-weight:900;
    }
    .entry-card p{font-size:15px;margin-bottom:18px}
    .mini-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:#6b1c78;
      font-weight:850;
      font-size:14px;
      transition:.2s ease;
    }
    .mini-link:hover{color:var(--coral);gap:10px}
    .status-timeline{
      position:relative;
      display:grid;
      gap:16px;
    }
    .timeline-card{
      display:grid;
      grid-template-columns:126px minmax(0,1fr) auto;
      gap:18px;
      align-items:center;
      padding:20px;
    }
    .time-mark{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      justify-content:center;
      min-height:72px;
      padding:12px;
      border-radius:18px;
      color:#fff;
      background:linear-gradient(135deg,#2a0731,#5a1768);
    }
    .time-mark strong{font-size:22px;line-height:1;color:var(--gold)}
    .time-mark span{font-size:12px;color:#eaddec;font-weight:800;margin-top:6px}
    .timeline-card p{margin-bottom:0;font-size:15px}
    .pill-group{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-top:12px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      padding:7px 10px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(48,22,56,.10);
      color:#5d4662;
      font-size:12px;
      font-weight:850;
    }
    .notice-card{
      padding:28px;
      background:
        radial-gradient(circle at 0 0,rgba(246,184,75,.18),transparent 30%),
        linear-gradient(180deg,#fffaf3,#fff4e4);
    }
    .notice-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:22px;
      align-items:center;
    }
    .notice-box{
      padding:18px;
      border-radius:20px;
      background:#fff;
      border:1px solid rgba(48,22,56,.08);
    }
    .notice-box strong{
      display:block;
      color:#321238;
      margin-bottom:6px;
      font-weight:850;
    }
    .subscribe-box{
      position:relative;
      overflow:hidden;
      padding:34px;
      color:#fff;
      background:
        radial-gradient(circle at 82% 0,rgba(255,91,110,.30),transparent 35%),
        radial-gradient(circle at 0 100%,rgba(246,184,75,.16),transparent 34%),
        linear-gradient(135deg,#110415,#2d082d);
      border-color:rgba(255,255,255,.14);
    }
    .subscribe-box h2,.subscribe-box h3{color:#fff}
    .subscribe-box p{color:#d9c7dc}
    .subscribe-form{
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
      margin-top:20px;
    }
    .form-control{
      min-height:48px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.10);
      color:#fff;
      padding:12px 14px;
      box-shadow:none;
    }
    .form-control::placeholder{color:#d0bfd2}
    .form-control:focus{
      background:rgba(255,255,255,.13);
      border-color:rgba(255,211,122,.70);
      color:#fff;
      box-shadow:0 0 0 4px rgba(255,211,122,.12);
    }
    .form-check{
      margin-top:14px;
      color:#d8c7da;
      font-size:13px;
    }
    .form-check-input{
      border-radius:6px;
      border-color:rgba(255,255,255,.28);
      background-color:rgba(255,255,255,.12);
    }
    .form-check-input:checked{
      background-color:var(--coral);
      border-color:var(--coral);
    }
    .accordion{
      --bs-accordion-border-width:0;
      --bs-accordion-bg:transparent;
    }
    .accordion-item{
      margin-bottom:14px;
      border-radius:20px!important;
      overflow:hidden;
      background:#fffaf3;
      border:1px solid var(--line);
      box-shadow:0 10px 26px rgba(36,9,42,.07);
    }
    .accordion-button{
      padding:20px 22px;
      color:#2b1230;
      font-weight:850;
      background:#fffaf3;
      box-shadow:none;
    }
    .accordion-button:not(.collapsed){
      color:#fff;
      background:linear-gradient(135deg,#2a0731,#64196d);
      box-shadow:none;
    }
    .accordion-button:focus{box-shadow:0 0 0 4px rgba(255,91,110,.14)}
    .accordion-body{
      padding:20px 22px 24px;
      color:var(--muted);
      background:#fffdf9;
    }
    .site-footer{
      padding:58px 0 28px;
      color:#fff;
      background:
        radial-gradient(circle at 10% 0,rgba(255,91,110,.18),transparent 32%),
        linear-gradient(180deg,#160519,#070208);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .7fr .7fr .7fr;
      gap:34px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-note{
      margin-top:16px;
      max-width:360px;
      color:#cdbcd0;
      font-size:14px;
    }
    .footer-title{
      margin-bottom:14px;
      color:#fff;
      font-weight:900;
      font-size:15px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#cdbcd0;
      font-size:14px;
      transition:.2s ease;
    }
    .footer-links a:hover{
      color:#ffd37a;
      padding-left:4px;
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      padding-top:22px;
      color:#b9a8bd;
      font-size:13px;
    }
    .modal-content{
      color:#fff;
      border-radius:28px;
      border:1px solid rgba(255,255,255,.18);
      background:
        radial-gradient(circle at 100% 0,rgba(255,91,110,.25),transparent 34%),
        linear-gradient(145deg,#160519,#2b082d);
      box-shadow:0 30px 90px rgba(0,0,0,.45);
    }
    .modal-header,.modal-footer{border-color:rgba(255,255,255,.12)}
    .modal-title{font-weight:900}
    .modal-body p{color:#decfe0}
    .age-options{display:flex;gap:12px;flex-wrap:wrap}
    .alert-custom{
      display:none;
      margin-top:14px;
      border-radius:16px;
      padding:12px 14px;
      color:#fff;
      background:rgba(246,184,75,.16);
      border:1px solid rgba(246,184,75,.28);
      font-size:14px;
    }
    @media (max-width:1199px){
      .entry-matrix{grid-template-columns:repeat(2,1fr)}
      .guide-layout{grid-template-columns:minmax(0,1fr) 310px}
    }
    @media (max-width:991px){
      .desktop-nav,.nav-cta{display:none!important}
      .mobile-toggler{display:inline-flex;align-items:center;justify-content:center}
      .page-hero{padding:66px 0 66px}
      .guide-layout{grid-template-columns:1fr}
      .side-sticky{position:relative;top:auto}
      .footer-grid{grid-template-columns:1fr 1fr}
      .timeline-card{grid-template-columns:110px minmax(0,1fr)}
      .timeline-card .btn-lightline{grid-column:1/-1;justify-self:start}
      .notice-grid{grid-template-columns:1fr}
    }
    @media (max-width:767px){
      .section{padding:64px 0}
      .section-tight{padding:46px 0}
      .steps-wrap{margin-top:-26px}
      .search-row{grid-template-columns:1fr;border-radius:22px}
      .search-row input{height:46px}
      .search-row .btn-main{width:100%}
      .entry-matrix{grid-template-columns:1fr}
      .subscribe-form{grid-template-columns:1fr}
      .subscribe-form .btn-main{width:100%}
      .footer-grid{grid-template-columns:1fr}
      .copyright{display:grid}
      .stage-strip{justify-content:flex-start}
    }
    @media (max-width:480px){
      h1{font-size:34px}
      .page-hero{text-align:left}
      .hero-search-panel{padding:12px;border-radius:22px}
      .count-card{min-width:calc(50% - 8px)}
      .timeline-card{grid-template-columns:1fr}
      .guide-panel,.subscribe-box,.notice-card{padding:22px}
      .brand-logo span:last-child{font-size:15px}
      .brand-mark{min-width:38px;height:32px}
    }
