/* roulang page: index */
:root{
      --bg:#fff7f8;
      --bg-soft:#fff1f3;
      --panel:#ffffff;
      --panel-dark:#191319;
      --text:#211b21;
      --muted:#70636e;
      --line:#eadde4;
      --line-strong:#ffd2de;
      --primary:#ff2f7d;
      --primary-dark:#d91962;
      --accent:#21d6b5;
      --orange:#ff8a2a;
      --purple:#7b3ff2;
      --shadow:0 18px 45px rgba(74, 28, 55, .10);
      --shadow-soft:0 10px 28px rgba(74, 28, 55, .08);
      --radius:18px;
      --radius-sm:14px;
      --container:1180px;
      --font:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      line-height:1.72;
      background:
        radial-gradient(circle at 8% 2%, rgba(255,47,125,.13), transparent 34%),
        radial-gradient(circle at 88% 8%, rgba(33,214,181,.12), transparent 30%),
        linear-gradient(180deg,#fffaf8 0%, var(--bg) 48%, #fff 100%);
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    a:hover{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input{font-family:inherit}
    .site-wrap{min-height:100vh}
    .container{
      width:min(calc(100% - 32px), var(--container));
      margin-inline:auto;
    }
    .section{
      padding:82px 0;
      position:relative;
    }
    .section.compact{padding:58px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary-dark);
      font-weight:800;
      font-size:14px;
      letter-spacing:.04em;
      margin-bottom:10px;
    }
    .section-kicker::before{
      content:"";
      width:10px;height:10px;border-radius:999px;
      background:var(--accent);
      box-shadow:0 0 0 6px rgba(33,214,181,.13);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(30px,5vw,54px);
      line-height:1.13;
      font-weight:850;
      letter-spacing:-.02em;
      margin-bottom:20px;
    }
    h2{
      font-size:clamp(24px,3vw,36px);
      line-height:1.18;
      font-weight:830;
      letter-spacing:-.015em;
      margin-bottom:12px;
    }
    h3{
      font-size:20px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:10px;
    }
    .lead{
      color:var(--muted);
      font-size:18px;
      max-width:760px;
    }
    .button{
      border-radius:999px;
      font-weight:800;
      min-height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:13px 20px;
      margin:0;
      transition:.22s ease;
      border:1px solid transparent;
    }
    .button.primary-btn{
      background:linear-gradient(135deg,var(--primary),#ff6b36);
      color:#fff;
      box-shadow:0 12px 24px rgba(255,47,125,.22);
    }
    .button.primary-btn:hover,.button.primary-btn:focus{
      filter:brightness(1.04);
      transform:translateY(-1px);
      box-shadow:0 16px 32px rgba(255,47,125,.28);
      color:#fff;
    }
    .button.secondary-btn{
      background:#fff;
      color:var(--text);
      border-color:var(--line);
    }
    .button.secondary-btn:hover,.button.secondary-btn:focus{
      border-color:var(--primary);
      color:var(--primary-dark);
      transform:translateY(-1px);
    }
    .button.dark-btn{
      background:#211821;
      color:#fff;
      border-color:rgba(255,255,255,.12);
    }
    .button.dark-btn:hover{background:#302230;color:#fff}
    .button:focus-visible,a:focus-visible,input:focus-visible{
      outline:3px solid rgba(33,214,181,.42);
      outline-offset:3px;
    }
    .badge,.tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
      font-weight:800;
      line-height:1;
      white-space:nowrap;
    }
    .badge{
      background:#211821;
      color:#fff;
    }
    .tag{
      background:#fff;
      color:#6b4b5d;
      border:1px solid var(--line);
    }
    .tag.hot{border-color:#ffc1d4;color:var(--primary-dark);background:#fff4f7}
    .tag.safe{border-color:#bbf4e9;color:#0f8f7b;background:#edfffb}
    .site-header{
      position:sticky;
      top:0;
      z-index:40;
      padding:16px 0 10px;
      backdrop-filter:blur(16px);
      background:rgba(255,247,248,.78);
      border-bottom:1px solid rgba(234,221,228,.55);
    }
    .nav-panel{
      background:rgba(255,255,255,.92);
      border:1px solid var(--line);
      border-radius:22px;
      box-shadow:var(--shadow-soft);
      padding:10px;
    }
    .top-bar{
      background:transparent;
      padding:0;
      flex-wrap:nowrap;
    }
    .top-bar ul{background:transparent}
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      font-size:18px;
      letter-spacing:-.01em;
      min-height:48px;
      padding:0 10px;
      color:var(--text);
    }
    .brand-mark{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      box-shadow:0 10px 22px rgba(255,47,125,.22);
      font-weight:900;
    }
    .nav-cards{
      display:flex;
      align-items:center;
      gap:8px;
      margin-left:18px;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .nav-cards::-webkit-scrollbar{display:none}
    .nav-card{
      min-height:46px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:15px;
      background:#fff8fa;
      border:1px solid transparent;
      font-weight:800;
      color:#5c4b58;
      white-space:nowrap;
    }
    .nav-card:hover{
      background:#fff;
      border-color:#ffc1d4;
      color:var(--primary-dark);
      transform:translateY(-1px);
    }
    .nav-card.active{
      background:#211821;
      color:#fff;
      border-color:#211821;
      box-shadow:0 8px 18px rgba(33,24,33,.14);
    }
    .nav-dot{
      width:9px;height:9px;border-radius:999px;background:var(--primary);
    }
    .top-cta{margin-left:auto;display:flex;gap:8px;align-items:center}
    .menu-icon-wrap{
      display:none;
      width:46px;height:46px;border:1px solid var(--line);
      border-radius:15px;background:#fff;align-items:center;justify-content:center;
    }
    .off-canvas{
      background:#fff8fa;
      padding:20px;
    }
    .off-canvas .brand{padding:0;margin-bottom:18px}
    .mobile-menu-list{
      display:grid;
      gap:10px;
      margin:0;
      list-style:none;
    }
    .mobile-menu-list a{
      display:flex;
      min-height:48px;
      align-items:center;
      padding:12px 14px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:16px;
      font-weight:800;
    }

    .hero{
      padding:44px 0 64px;
    }
    .hero-stage{
      position:relative;
      overflow:hidden;
      border-radius:30px;
      background:
        linear-gradient(135deg,rgba(25,19,25,.92),rgba(70,29,55,.88)),
        radial-gradient(circle at 70% 20%,rgba(255,47,125,.45),transparent 35%);
      color:#fff;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 28px 70px rgba(72,25,53,.22);
    }
    .hero-banner{
      min-height:500px;
      padding:42px;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:34px;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .hero-stage::before{
      content:"";
      position:absolute;
      inset:auto -80px -120px auto;
      width:360px;height:360px;border-radius:50%;
      background:rgba(33,214,181,.18);
      filter:blur(6px);
    }
    .hero-stage::after{
      content:"";
      position:absolute;
      inset:-120px auto auto 46%;
      width:340px;height:340px;border-radius:50%;
      background:rgba(255,47,125,.22);
      filter:blur(8px);
    }
    .hero .lead{color:rgba(255,255,255,.78);font-size:18px}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:26px 0 22px;
    }
    .hero .secondary-btn{
      background:rgba(255,255,255,.08);
      color:#fff;
      border-color:rgba(255,255,255,.18);
    }
    .hero .secondary-btn:hover{border-color:rgba(255,255,255,.45);color:#fff}
    .hero-tags{
      display:flex;flex-wrap:wrap;gap:10px;
    }
    .hero-tags .tag{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.16);
      color:#fff;
    }
    .notice-cover{
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      border-radius:24px;
      padding:18px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
    }
    .cover-top{
      display:flex;justify-content:space-between;gap:14px;align-items:center;margin-bottom:16px;
    }
    .cover-art{
      min-height:210px;
      border-radius:22px;
      padding:20px;
      background:
        linear-gradient(135deg,rgba(255,47,125,.78),rgba(123,63,242,.62)),
        radial-gradient(circle at 80% 28%,rgba(33,214,181,.85),transparent 26%);
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .cover-art::before{
      content:"";
      position:absolute;
      right:-22px;bottom:-34px;width:140px;height:220px;
      background:rgba(255,255,255,.20);
      border-radius:90px 90px 24px 24px;
      transform:rotate(12deg);
    }
    .cover-art::after{
      content:"18+";
      position:absolute;
      right:18px;top:18px;
      font-weight:900;
      color:#211821;
      background:#fff;
      padding:7px 10px;
      border-radius:999px;
    }
    .cover-title{
      position:relative;
      max-width:260px;
      font-weight:900;
      font-size:26px;
      line-height:1.16;
      text-shadow:0 8px 20px rgba(0,0,0,.18);
    }
    .countdown{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
      margin-top:14px;
    }
    .time-box{
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.16);
      border-radius:16px;
      padding:12px 8px;
      text-align:center;
    }
    .time-box strong{display:block;font-size:24px;line-height:1;font-weight:900}
    .time-box span{font-size:12px;color:rgba(255,255,255,.72)}
    .remind-row{
      display:flex;
      gap:10px;
      margin-top:14px;
    }
    .remind-row input{
      flex:1;
      height:48px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.10);
      color:#fff;
      padding:0 16px;
      box-shadow:none;
      margin:0;
    }
    .remind-row input::placeholder{color:rgba(255,255,255,.58)}
    .remind-row .button{height:48px;min-width:112px}

    .pain-strip{
      margin-top:-28px;
      position:relative;
      z-index:3;
    }
    .strip-grid{
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      box-shadow:var(--shadow);
      padding:16px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .strip-item{
      padding:16px;
      border-radius:16px;
      background:linear-gradient(180deg,#fff,#fff7f9);
      border:1px solid var(--line);
      min-height:108px;
    }
    .strip-item strong{display:block;font-size:17px;margin-bottom:5px}
    .strip-item p{font-size:14px;color:var(--muted);margin:0}

    .stage-grid{
      display:grid;
      grid-template-columns:1fr .78fr;
      gap:22px;
      align-items:stretch;
    }
    .screenshot-board,.side-panel,.content-card,.metric-card,.feedback-card,.info-card,.step-card{
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      transition:.22s ease;
    }
    .content-card:hover,.metric-card:hover,.feedback-card:hover,.info-card:hover,.step-card:hover{
      transform:translateY(-2px);
      border-color:#ffc1d4;
      box-shadow:var(--shadow);
    }
    .screenshot-board{
      padding:22px;
      min-height:420px;
      position:relative;
      overflow:hidden;
    }
    .board-toolbar{
      display:flex;justify-content:space-between;align-items:center;gap:14px;margin-bottom:16px;
    }
    .traffic-lights{display:flex;gap:7px}
    .traffic-lights span{width:10px;height:10px;border-radius:50%;background:#ff557f}
    .traffic-lights span:nth-child(2){background:#ffba3b}
    .traffic-lights span:nth-child(3){background:#21d6b5}
    .entry-matrix{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .matrix-card{
      min-height:144px;
      border-radius:18px;
      padding:18px;
      background:#fff7f9;
      border:1px solid var(--line);
      position:relative;
      overflow:hidden;
    }
    .matrix-card:nth-child(2){background:#f1fffb}
    .matrix-card:nth-child(3){background:#fff8ef}
    .matrix-card:nth-child(4){background:#f7f3ff}
    .matrix-card .num{
      width:34px;height:34px;border-radius:12px;
      display:grid;place-items:center;
      background:#211821;color:#fff;font-weight:900;margin-bottom:14px;
    }
    .matrix-card p{font-size:14px;color:var(--muted);margin:0}
    .side-panel{
      padding:22px;
      background:#211821;
      color:#fff;
    }
    .check-list{
      list-style:none;
      margin:18px 0 0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .check-list li{
      display:flex;gap:10px;align-items:flex-start;
      padding:12px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
      border-radius:15px;
      color:rgba(255,255,255,.82);
    }
    .check-icon{
      width:22px;height:22px;border-radius:999px;
      display:grid;place-items:center;
      background:var(--accent);
      color:#10221f;
      font-size:13px;
      font-weight:900;
      flex:0 0 auto;
    }

    .steps-row .step-card{
      padding:22px;
      min-height:260px;
      position:relative;
      overflow:hidden;
    }
    .step-number{
      width:46px;height:46px;border-radius:16px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--primary),var(--orange));
      color:#fff;
      font-weight:900;
      font-size:20px;
      margin-bottom:18px;
      box-shadow:0 12px 22px rgba(255,47,125,.20);
    }
    .step-card p,.content-card p,.feedback-card p,.info-card p,.metric-card p{color:var(--muted);margin-bottom:0}
    .content-card{
      padding:22px;
      min-height:268px;
      position:relative;
      overflow:hidden;
    }
    .content-icon{
      width:48px;height:48px;border-radius:16px;
      display:grid;place-items:center;
      font-size:22px;
      margin-bottom:18px;
      background:#fff1f5;
      color:var(--primary-dark);
    }
    .content-link{
      display:inline-flex;
      margin-top:18px;
      font-weight:900;
      color:var(--primary-dark);
    }

    .metrics-band{
      background:#211821;
      border-radius:28px;
      padding:28px;
      color:#fff;
      overflow:hidden;
      position:relative;
    }
    .metrics-band::after{
      content:"";
      position:absolute;
      width:280px;height:280px;right:-90px;top:-100px;border-radius:50%;
      background:rgba(255,47,125,.18);
    }
    .metric-card{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.12);
      padding:20px;
      min-height:154px;
      color:#fff;
      box-shadow:none;
      position:relative;
      z-index:1;
    }
    .metric-value{
      font-size:32px;
      font-weight:900;
      line-height:1;
      color:#fff;
      margin-bottom:12px;
    }
    .metric-card p{color:rgba(255,255,255,.72);font-size:14px}

    .feedback-wall{
      display:grid;
      grid-template-columns:1.1fr .9fr .9fr;
      gap:18px;
    }
    .feedback-card{
      padding:22px;
      min-height:250px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .feedback-card.featured{
      background:linear-gradient(180deg,#fff,#fff3f7);
    }
    .stars{color:#ffac22;letter-spacing:2px;font-size:17px}
    .quote{
      font-size:17px;
      color:#433741;
      margin:18px 0;
    }
    .anon{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:800;
    }
    .avatar{
      width:38px;height:38px;border-radius:50%;
      background:linear-gradient(135deg,var(--accent),var(--primary));
    }

    .news-layout{
      display:grid;
      grid-template-columns:1fr 340px;
      gap:22px;
    }
    .news-list{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:10px;
      box-shadow:var(--shadow-soft);
    }
    .news-item{
      display:grid;
      grid-template-columns:92px 1fr auto;
      gap:16px;
      align-items:center;
      padding:16px;
      border-radius:16px;
      border:1px solid transparent;
    }
    .news-item + .news-item{border-top:1px solid var(--line)}
    .news-item:hover{
      background:#fff7f9;
      border-color:#ffc1d4;
    }
    .news-date{
      display:grid;
      place-items:center;
      min-height:58px;
      border-radius:15px;
      background:#211821;
      color:#fff;
      font-weight:900;
      line-height:1.2;
    }
    .news-date span{display:block;font-size:12px;color:rgba(255,255,255,.68)}
    .news-item h3{font-size:18px;margin-bottom:4px}
    .news-item p{font-size:14px;color:var(--muted);margin:0}
    .recommend-box{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:22px;
      box-shadow:var(--shadow-soft);
      position:sticky;
      top:104px;
    }
    .mini-list{
      list-style:none;margin:16px 0 0;padding:0;display:grid;gap:10px;
    }
    .mini-list li{
      padding:12px;
      border-radius:14px;
      background:#fff7f9;
      border:1px solid var(--line);
      color:#5f505c;
      font-weight:700;
    }

    .accordion{
      background:transparent;
    }
    .accordion-item{
      border:1px solid var(--line);
      background:#fff;
      border-radius:16px;
      overflow:hidden;
      box-shadow:var(--shadow-soft);
      margin-bottom:12px;
    }
    .accordion-title{
      min-height:56px;
      display:flex;
      align-items:center;
      color:var(--text);
      font-weight:850;
      font-size:17px;
      border:0;
      padding:18px 52px 18px 20px;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#fff5f8;
      color:var(--primary-dark);
    }
    .accordion-title::before{right:20px}
    .accordion-content{
      border:0;
      border-top:1px solid var(--line);
      color:var(--muted);
      padding:18px 20px 20px;
      background:#fff;
    }

    .download-band{
      border-radius:28px;
      padding:32px;
      background:
        linear-gradient(135deg,#fff,#fff1f5 54%,#f0fffb),
        radial-gradient(circle at 90% 20%,rgba(255,47,125,.14),transparent 30%);
      border:1px solid var(--line-strong);
      display:grid;
      grid-template-columns:1fr auto;
      align-items:center;
      gap:24px;
      box-shadow:var(--shadow);
    }
    .download-band p{color:var(--muted);margin-bottom:0}
    .download-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
    .age-note{
      margin-top:14px;
      color:#7b6471;
      font-size:14px;
    }
    .age-note strong{color:var(--primary-dark)}

    .site-footer{
      background:#191319;
      color:#fff;
      padding:52px 0 28px;
      margin-top:42px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr .75fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      gap:10px;
      align-items:center;
      font-size:20px;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-brand .brand-mark{box-shadow:none}
    .site-footer p{color:rgba(255,255,255,.68);margin-bottom:0}
    .footer-title{
      font-weight:900;
      margin-bottom:12px;
      color:#fff;
    }
    .footer-links{
      list-style:none;margin:0;padding:0;display:grid;gap:8px;
    }
    .footer-links a{
      color:rgba(255,255,255,.68);
      min-height:32px;
      display:inline-flex;
      align-items:center;
    }
    .footer-links a:hover{color:#fff}
    .copyright{
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.56);
      font-size:14px;
    }

    @media (max-width:1024px){
      .hero-banner{grid-template-columns:1fr;min-height:auto}
      .stage-grid,.news-layout{grid-template-columns:1fr}
      .recommend-box{position:static}
      .feedback-wall{grid-template-columns:1fr 1fr}
      .top-cta .secondary-btn{display:none}
    }
    @media (max-width:768px){
      .site-header{padding:10px 0}
      .nav-cards,.top-cta{display:none}
      .menu-icon-wrap{display:flex;margin-left:auto}
      .nav-panel{border-radius:18px}
      .brand{font-size:16px;min-width:0}
      .brand span:last-child{max-width:190px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
      .section{padding:56px 0}
      .section-head{display:block}
      .hero{padding:22px 0 48px}
      .hero-banner{padding:24px;gap:22px}
      .hero-actions .button,.remind-row .button{width:100%}
      .remind-row{flex-direction:column}
      .countdown{grid-template-columns:repeat(2,1fr)}
      .strip-grid{grid-template-columns:1fr}
      .entry-matrix{grid-template-columns:1fr}
      .feedback-wall{grid-template-columns:1fr}
      .news-item{grid-template-columns:1fr;align-items:start}
      .news-date{width:96px}
      .download-band{grid-template-columns:1fr;padding:24px}
      .download-actions{justify-content:flex-start}
      .download-actions .button{width:100%}
      .footer-grid{grid-template-columns:1fr}
      .copyright{display:block}
    }
    @media (max-width:520px){
      .container{width:min(calc(100% - 24px), var(--container))}
      .hero-banner{padding:20px;border-radius:22px}
      .hero-stage{border-radius:24px}
      h1{font-size:30px;word-break:break-word}
      .lead{font-size:16px}
      .cover-title{font-size:22px}
      .button{width:100%;min-height:48px}
      .section{padding:48px 0}
      .screenshot-board,.side-panel,.content-card,.metric-card,.feedback-card,.info-card,.step-card{border-radius:16px}
      .metrics-band{padding:18px;border-radius:22px}
    }

/* roulang page: category1 */
:root {
      --bg: #fff7f7;
      --bg-soft: #fffefe;
      --panel: #161216;
      --panel-2: #241a22;
      --text: #221821;
      --muted: #746873;
      --line: rgba(34, 24, 33, .12);
      --line-dark: rgba(255, 255, 255, .14);
      --hot: #ff2f7d;
      --hot-2: #ff6b2f;
      --mint: #27e6bd;
      --cream: #fff3df;
      --card: #ffffff;
      --radius-sm: 12px;
      --radius: 16px;
      --radius-lg: 22px;
      --shadow: 0 16px 42px rgba(47, 28, 43, .12);
      --shadow-soft: 0 10px 26px rgba(47, 28, 43, .08);
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 4%, rgba(255, 47, 125, .12), transparent 28%),
        linear-gradient(180deg, #fff7f7 0%, #fffdfb 46%, #f7f4f4 100%);
      line-height: 1.72;
      font-weight: 400;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      padding: 16px 0 10px;
      backdrop-filter: blur(16px);
      background: rgba(255, 247, 247, .76);
      border-bottom: 1px solid rgba(255, 255, 255, .62);
    }

    .nav-panel {
      min-height: 74px;
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255, 255, 255, .88);
      box-shadow: var(--shadow-soft);
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: nowrap;
    }

    .top-bar,
    .top-bar ul {
      background: transparent;
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      font-weight: 800;
      color: var(--text);
      white-space: nowrap;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 13px;
      color: #fff;
      font-weight: 800;
      background: linear-gradient(135deg, var(--hot), var(--hot-2));
      box-shadow: 0 10px 20px rgba(255, 47, 125, .25);
    }

    .nav-cards {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1;
      margin-left: 18px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .nav-cards::-webkit-scrollbar {
      display: none;
    }

    .nav-card {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: #fffafa;
      color: #3a2a36;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #d5c7cf;
      box-shadow: 0 0 0 4px rgba(213, 199, 207, .18);
    }

    .nav-card:hover,
    .nav-card:focus-visible,
    .nav-card.active {
      border-color: rgba(255, 47, 125, .42);
      background: #fff0f5;
      color: #141014;
      transform: translateY(-1px);
    }

    .nav-card.active .nav-dot,
    .nav-card:hover .nav-dot {
      background: var(--hot);
      box-shadow: 0 0 0 4px rgba(255, 47, 125, .15);
    }

    .top-cta {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 12px;
    }

    .button {
      margin: 0;
      border-radius: 999px;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 800;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
    }

    .primary-btn {
      background: linear-gradient(135deg, var(--hot), var(--hot-2));
      color: #fff;
      border: 0;
      box-shadow: 0 14px 26px rgba(255, 47, 125, .24);
      padding: 13px 20px;
    }

    .primary-btn:hover,
    .primary-btn:focus-visible {
      color: #fff;
      filter: brightness(1.04);
      transform: translateY(-1px);
      box-shadow: 0 18px 34px rgba(255, 47, 125, .31);
    }

    .secondary-btn {
      background: #fff;
      color: #2b2029;
      border: 1px solid var(--line);
      padding: 12px 17px;
    }

    .secondary-btn:hover,
    .secondary-btn:focus-visible {
      background: #fff4f7;
      color: #151015;
      border-color: rgba(255, 47, 125, .34);
      transform: translateY(-1px);
    }

    .menu-icon-wrap {
      display: none;
      width: 46px;
      height: 46px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      cursor: pointer;
    }

    .off-canvas {
      background: #fff8f8;
      padding: 18px;
    }

    .mobile-menu-title {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .mobile-menu a {
      min-height: 48px;
      display: flex;
      align-items: center;
      padding: 12px 14px;
      margin-bottom: 10px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: #fff;
      font-weight: 800;
    }

    .mobile-menu a.active {
      background: #fff0f5;
      border-color: rgba(255, 47, 125, .42);
    }

    .page-hero {
      padding: 58px 0 34px;
    }

    .hero-shell {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(22, 18, 22, .96), rgba(49, 31, 43, .92)),
        radial-gradient(circle at 70% 25%, rgba(255, 47, 125, .36), transparent 34%);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .12);
      box-shadow: 0 24px 60px rgba(38, 20, 34, .22);
      padding: 38px;
    }

    .hero-shell:before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .35;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      align-items: stretch;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 47, 125, .16);
      color: #ffe7ef;
      border: 1px solid rgba(255, 255, 255, .16);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .age-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      min-height: 28px;
      border-radius: 999px;
      background: var(--mint);
      color: #071714;
      font-weight: 900;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      color: inherit;
      font-weight: 800;
      letter-spacing: 0;
      line-height: 1.18;
    }

    h1 {
      max-width: 760px;
      font-size: clamp(30px, 4.4vw, 52px);
      word-break: break-word;
      margin-bottom: 18px;
    }

    .hero-lead {
      max-width: 740px;
      color: rgba(255, 255, 255, .78);
      font-size: 18px;
      margin: 0 0 22px;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .tag,
    .filter-chip {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 13px;
      font-weight: 800;
      border: 1px solid var(--line);
      background: #fff;
      color: #3c3039;
    }

    .hero-shell .tag {
      background: rgba(255, 255, 255, .08);
      color: #fff;
      border-color: rgba(255, 255, 255, .16);
    }

    .guide-panel {
      min-height: 100%;
      border-radius: 22px;
      padding: 20px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .14);
      backdrop-filter: blur(10px);
    }

    .poster-card {
      min-height: 320px;
      border-radius: 20px;
      padding: 18px;
      background:
        linear-gradient(150deg, rgba(255, 47, 125, .78), rgba(255, 107, 47, .74)),
        radial-gradient(circle at 32% 20%, rgba(255, 255, 255, .5), transparent 20%);
      position: relative;
      overflow: hidden;
      box-shadow: 0 22px 42px rgba(0, 0, 0, .18);
    }

    .poster-card:before,
    .poster-card:after {
      content: "";
      position: absolute;
      border-radius: 999px;
      background: rgba(255, 255, 255, .24);
    }

    .poster-card:before {
      width: 150px;
      height: 150px;
      right: -34px;
      top: -24px;
    }

    .poster-card:after {
      width: 220px;
      height: 220px;
      left: -84px;
      bottom: -92px;
      background: rgba(22, 18, 22, .2);
    }

    .poster-inner {
      position: relative;
      z-index: 1;
      min-height: 284px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .poster-title {
      font-size: 22px;
      line-height: 1.3;
      font-weight: 900;
    }

    .poster-list {
      display: grid;
      gap: 10px;
    }

    .poster-list span {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      min-height: 42px;
      align-items: center;
      padding: 9px 12px;
      border-radius: 14px;
      background: rgba(255, 255, 255, .18);
      font-weight: 800;
    }

    .section {
      padding: 70px 0;
    }

    .section.tight {
      padding-top: 38px;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--hot);
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 10px;
    }

    .section h2 {
      font-size: clamp(24px, 3.1vw, 34px);
      margin-bottom: 12px;
    }

    .section-desc {
      color: var(--muted);
      margin: 0;
      font-size: 16px;
    }

    .filter-band {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255, 255, 255, .82);
      box-shadow: var(--shadow-soft);
      margin-bottom: 24px;
    }

    .filter-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
    }

    .filter-chip {
      cursor: pointer;
      min-width: 96px;
    }

    .filter-chip.active,
    .filter-chip:hover,
    .filter-chip:focus-visible {
      background: #191316;
      border-color: #191316;
      color: #fff;
      transform: translateY(-1px);
    }

    .search-box {
      display: flex;
      gap: 10px;
      margin-top: 14px;
    }

    .search-box input {
      height: 48px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      box-shadow: none;
      padding: 0 16px;
      margin: 0;
    }

    .search-box input:focus {
      border-color: rgba(255, 47, 125, .52);
      box-shadow: 0 0 0 4px rgba(255, 47, 125, .12);
    }

    .content-card,
    .side-card,
    .result-card,
    .feedback-card {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--card);
      box-shadow: var(--shadow-soft);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .content-card:hover,
    .side-card:hover,
    .result-card:hover,
    .feedback-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 47, 125, .34);
      box-shadow: var(--shadow);
    }

    .content-flow {
      display: grid;
      gap: 18px;
    }

    .content-card {
      overflow: hidden;
      min-height: 248px;
      display: grid;
      grid-template-columns: 210px 1fr;
    }

    .cover {
      min-height: 100%;
      background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, .5), transparent 20%),
        linear-gradient(145deg, #20171f, #ff2f7d 54%, #ff8b2f);
      position: relative;
      overflow: hidden;
    }

    .cover.alt {
      background:
        radial-gradient(circle at 70% 18%, rgba(39, 230, 189, .42), transparent 21%),
        linear-gradient(145deg, #1b1418, #5d344f 55%, #27e6bd);
    }

    .cover.soft {
      background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .48), transparent 22%),
        linear-gradient(145deg, #2d222a, #ff6b2f 58%, #ffe4bd);
    }

    .cover:after {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, .28);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 40%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .16) 0 1px, transparent 1px 14px);
    }

    .cover-badge {
      position: absolute;
      z-index: 1;
      left: 16px;
      top: 16px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .92);
      color: #191316;
      font-size: 12px;
      font-weight: 900;
    }

    .card-body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .mini-badge {
      display: inline-flex;
      min-height: 28px;
      align-items: center;
      justify-content: center;
      padding: 4px 9px;
      border-radius: 999px;
      background: #fff0f5;
      color: #c31758;
      font-weight: 900;
      font-size: 12px;
    }

    .content-card h3,
    .side-card h3,
    .result-card h3,
    .feedback-card h3 {
      font-size: 20px;
      color: #201820;
    }

    .content-card p,
    .side-card p,
    .result-card p,
    .feedback-card p {
      color: var(--muted);
      margin: 0;
      font-size: 15px;
    }

    .text-link {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #d91e63;
      font-weight: 900;
    }

    .text-link:hover,
    .text-link:focus-visible {
      color: #111;
    }

    .side-stack {
      display: grid;
      gap: 16px;
      position: sticky;
      top: 112px;
    }

    .side-card {
      padding: 18px;
    }

    .side-list {
      list-style: none;
      padding: 0;
      margin: 14px 0 0;
      display: grid;
      gap: 10px;
    }

    .side-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 10px 0;
      border-top: 1px solid var(--line);
      color: #4d4149;
      font-size: 14px;
    }

    .check {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      border-radius: 999px;
      background: #e8fff9;
      color: #0c8c72;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      line-height: 1;
    }

    .result-strip {
      padding: 26px;
      border-radius: 24px;
      background: #191316;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .result-grid {
      margin-top: 18px;
    }

    .result-card {
      min-height: 188px;
      padding: 20px;
      background: rgba(255, 255, 255, .07);
      border-color: rgba(255, 255, 255, .12);
      color: #fff;
      box-shadow: none;
    }

    .result-card h3 {
      color: #fff;
      margin: 12px 0 8px;
    }

    .result-card p {
      color: rgba(255, 255, 255, .72);
    }

    .result-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--mint), #a8ffe9);
      color: #081915;
      font-weight: 900;
    }

    .feedback-card {
      min-height: 226px;
      padding: 22px;
    }

    .stars {
      color: var(--hot-2);
      font-size: 16px;
      letter-spacing: 0;
      margin-bottom: 12px;
    }

    .quote {
      font-size: 16px;
      color: #382f36;
      margin-bottom: 16px;
    }

    .person {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding-top: 14px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .pagination-wrap {
      margin-top: 26px;
      display: flex;
      justify-content: center;
    }

    .pagination {
      margin: 0;
    }

    .pagination a,
    .pagination button,
    .pagination .current {
      border-radius: 12px;
      min-width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 3px;
      font-weight: 800;
    }

    .pagination .current {
      background: var(--hot);
      color: #fff;
    }

    .pagination a:hover {
      background: #fff0f5;
      color: #151015;
    }

    .faq-panel {
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      border-bottom: 1px solid var(--line);
    }

    .accordion-item:last-child {
      border-bottom: 0;
    }

    .accordion-title {
      min-height: 58px;
      display: flex;
      align-items: center;
      padding: 18px 54px 18px 20px;
      color: #201820;
      font-size: 16px;
      font-weight: 900;
      border: 0;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: #fff5f7;
      color: #201820;
    }

    .accordion-title:before {
      right: 20px;
      margin-top: -10px;
      color: var(--hot);
      font-size: 22px;
    }

    .accordion-content {
      border: 0;
      padding: 0 20px 20px;
      color: var(--muted);
      background: #fff;
    }

    .cta-band {
      border-radius: 26px;
      padding: 30px;
      background:
        linear-gradient(135deg, #fff 0%, #fff4f7 58%, #fff1df 100%);
      border: 1px solid rgba(255, 47, 125, .18);
      box-shadow: var(--shadow);
    }

    .cta-band h2 {
      font-size: clamp(24px, 3vw, 34px);
      margin-bottom: 10px;
    }

    .cta-band p {
      color: var(--muted);
      margin: 0;
    }

    .age-note {
      margin-top: 16px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #5f525b;
      font-size: 14px;
    }

    .site-footer {
      margin-top: 40px;
      padding: 52px 0 28px;
      background: #151114;
      color: rgba(255, 255, 255, .72);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr .8fr .8fr;
      gap: 34px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-brand {
      color: #fff;
      margin-bottom: 12px;
    }

    .site-footer p {
      margin: 0;
      max-width: 520px;
    }

    .footer-title {
      color: #fff;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .68);
      border-bottom: 1px solid transparent;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: #fff;
      border-color: rgba(255, 255, 255, .42);
    }

    .copyright {
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 13px;
      color: rgba(255, 255, 255, .54);
    }

    :focus-visible {
      outline: 3px solid rgba(39, 230, 189, .5);
      outline-offset: 3px;
    }

    @media (max-width: 1024px) {
      .container {
        width: min(100% - 30px, var(--max));
      }

      .nav-panel {
        align-items: flex-start;
      }

      .top-cta {
        display: none;
      }

      .menu-icon-wrap {
        display: inline-flex;
        margin-left: 10px;
      }

      .nav-cards {
        max-width: calc(100vw - 310px);
      }

      .hero-shell {
        padding: 30px;
      }

      .content-card {
        grid-template-columns: 180px 1fr;
      }

      .side-stack {
        position: static;
        margin-top: 18px;
      }
    }

    @media (max-width: 768px) {
      .site-header {
        padding-top: 10px;
      }

      .nav-panel {
        min-height: 68px;
        padding: 10px;
      }

      .top-bar-right {
        min-width: 0;
      }

      .brand span:last-child {
        max-width: 168px;
        white-space: normal;
        line-height: 1.2;
      }

      .nav-cards {
        margin-left: 10px;
        max-width: calc(100vw - 260px);
      }

      .nav-card {
        min-height: 44px;
        padding: 9px 12px;
      }

      .page-hero {
        padding: 34px 0 22px;
      }

      .hero-shell {
        border-radius: 22px;
        padding: 24px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .poster-card {
        margin-top: 22px;
        min-height: 280px;
      }

      .section {
        padding: 52px 0;
      }

      .content-card {
        grid-template-columns: 1fr;
      }

      .cover {
        min-height: 164px;
      }

      .search-box {
        flex-direction: column;
      }

      .search-box .button {
        width: 100%;
      }

      .cta-band {
        padding: 24px;
      }

      .cta-actions .button,
      .hero-actions .button {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(100% - 24px, var(--max));
      }

      .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
      }

      .brand span:last-child {
        max-width: 136px;
        font-size: 14px;
      }

      .nav-cards {
        display: none;
      }

      .hero-shell {
        padding: 20px;
      }

      h1 {
        font-size: 30px;
      }

      .tag-row,
      .filter-row {
        gap: 8px;
      }

      .filter-chip {
        min-width: auto;
        flex: 1 1 calc(50% - 8px);
      }

      .card-body {
        padding: 18px;
      }

      .content-card h3,
      .side-card h3,
      .result-card h3,
      .feedback-card h3 {
        font-size: 18px;
      }

      .poster-list span {
        min-height: 40px;
        font-size: 14px;
      }

      .accordion-title {
        font-size: 15px;
        padding-left: 16px;
      }

      .copyright {
        display: grid;
      }
    }
