/* roulang page: index */
:root{
  --bg:#0d0f14;
  --bg2:#121723;
  --panel:#151b28;
  --panel2:#1a2232;
  --line:#283041;
  --text:#f3f0e9;
  --muted:#9aa4b5;
  --soft:#6d7685;
  --accent:#ff3d7f;
  --accent2:#16d6c3;
  --accent3:#4aa4ff;
  --accent4:#ffb84a;
  --shadow:0 18px 40px rgba(0,0,0,.28);
  --shadow-soft:0 10px 24px rgba(0,0,0,.18);
  --radius:8px;
  --radius-sm:6px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
  letter-spacing:0;
  overflow-x:hidden;
  position:relative;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:36px 36px;
  opacity:.28;
  pointer-events:none;
  z-index:0;
}
a{color:inherit;text-decoration:none;transition:color .2s ease,opacity .2s ease,transform .2s ease,border-color .2s ease,background-color .2s ease,box-shadow .2s ease}
a:hover{color:inherit}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}
button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
  outline:2px solid var(--accent2);
  outline-offset:2px;
}
main,header,footer{position:relative;z-index:1}
section{scroll-margin-top:100px}
.container-xl{position:relative}
.top-strip{
  background:rgba(255,255,255,.02);
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:12px;
  color:var(--muted);
  transition:all .25s ease;
}
.top-strip .top-strip-inner{
  min-height:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:5px 0;
}
.top-strip .domain{color:#d8deea;font-weight:600;letter-spacing:.2px}
.top-strip .notice{
  display:flex;
  align-items:center;
  gap:8px;
  color:#c7cfdb;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.top-strip .notice span{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.top-strip .notice i{width:14px;height:14px;color:var(--accent2)}
.top-strip .top-action{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  color:#f6f7fb;
  background:rgba(255,255,255,.03);
  font-size:12px;
  white-space:nowrap;
}
.top-strip .top-action:hover{
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.07);
  transform:translateY(-1px);
}
.site-header{
  position:sticky;
  top:0;
  z-index:1020;
  backdrop-filter:blur(14px);
  background:rgba(13,15,20,.84);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled{
  box-shadow:0 18px 36px rgba(0,0,0,.36);
  background:rgba(13,15,20,.94);
}
.site-header.is-scrolled .top-strip{
  max-height:0;
  overflow:hidden;
  opacity:0;
  padding-top:0;
  padding-bottom:0;
  border-bottom-color:transparent;
}
.navbar{
  padding:14px 0;
  transition:padding .25s ease;
}
.site-header.is-scrolled .navbar{padding:9px 0}
.navbar .navbar-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text);
  font-weight:800;
  letter-spacing:0;
  line-height:1.15;
  white-space:normal;
}
.brand-mark{
  width:28px;
  height:28px;
  border-radius:8px;
  background:
    linear-gradient(135deg, rgba(255,61,127,.95), rgba(255,184,74,.9));
  box-shadow:0 0 0 1px rgba(255,255,255,.08) inset, 0 10px 18px rgba(255,61,127,.28);
  position:relative;
  flex:0 0 auto;
}
.brand-mark::after{
  content:"";
  position:absolute;
  inset:6px;
  border:1px solid rgba(255,255,255,.58);
  border-radius:5px;
}
.brand-text{
  font-size:16px;
  letter-spacing:0;
  max-width:260px;
}
.navbar-toggler{
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  padding:8px 10px;
  color:var(--text);
  box-shadow:none;
}
.navbar-toggler:focus{box-shadow:none}
.navbar-toggler:hover{
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.04);
}
.navbar-collapse{
  gap:16px;
}
.navbar-nav{
  gap:8px;
}
.navbar .nav-link{
  color:#c6cfdb;
  padding:8px 12px;
  border-radius:8px;
  border:1px solid transparent;
  font-size:14px;
  white-space:nowrap;
}
.navbar .nav-link:hover{
  color:var(--text);
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.navbar .nav-link.active,
.navbar .nav-link[aria-current="page"]{
  color:var(--text);
  background:rgba(255,61,127,.12);
  border-color:rgba(255,61,127,.24);
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:auto;
}
.btn{
  border-radius:8px;
  padding:.66rem .95rem;
  font-weight:700;
  letter-spacing:0;
  border:1px solid transparent;
  box-shadow:none;
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-rose{
  background:var(--accent);
  color:#fff;
  border-color:rgba(255,255,255,.06);
  box-shadow:0 10px 22px rgba(255,61,127,.2);
}
.btn-rose:hover{
  background:#ff548b;
  color:#fff;
  box-shadow:0 14px 24px rgba(255,61,127,.26);
}
.btn-cyan{
  background:var(--accent2);
  color:#081018;
  border-color:rgba(255,255,255,.06);
  box-shadow:0 10px 22px rgba(22,214,195,.18);
}
.btn-cyan:hover{
  background:#3ee1d2;
  color:#061018;
}
.btn-ghost{
  background:rgba(255,255,255,.03);
  color:var(--text);
  border-color:rgba(255,255,255,.12);
}
.btn-ghost:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.24);
}
.btn-outline{
  background:transparent;
  color:var(--text);
  border-color:rgba(255,255,255,.16);
}
.btn-outline:hover{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.28);
}
.btn i,.nav-link i,.top-action i,.panel-link i{width:16px;height:16px}
.page-main{padding-bottom:18px}
.section{
  padding:34px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.section.alt{background:rgba(255,255,255,.015)}
.crumbs{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:13px;
  margin:2px 0 18px;
  flex-wrap:wrap;
}
.crumbs span{color:#667083}
.section-head{
  max-width:760px;
  margin-bottom:20px;
}
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,61,127,.12);
  color:#ffd0e1;
  border:1px solid rgba(255,61,127,.2);
  font-size:12px;
  font-weight:700;
  margin-bottom:10px;
}
.section-kicker::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(255,61,127,.12);
}
.section-head h2{
  margin:0;
  font-size:28px;
  line-height:1.12;
  font-weight:800;
}
.section-head p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:15px;
  max-width:720px;
}
.hero{
  padding:30px 0 34px;
  border-top:0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:stretch;
}
.hero-copy{
  padding:16px 0 8px;
}
.hero-copy .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(22,214,195,.12);
  color:#b9fff6;
  border:1px solid rgba(22,214,195,.2);
  font-size:12px;
  font-weight:700;
  margin-bottom:14px;
}
.hero-copy h1{
  margin:0;
  font-size:42px;
  line-height:1.06;
  font-weight:900;
  letter-spacing:0;
  max-width:12ch;
}
.hero-copy .hero-lead{
  margin:16px 0 0;
  max-width:660px;
  color:#d6dce7;
  font-size:16px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 18px;
}
.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.stat-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  min-height:44px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  color:#d9e0ea;
  font-size:13px;
  box-shadow:var(--shadow-soft);
}
.stat-pill strong{font-size:15px;color:#fff}
.hero-side{
  display:grid;
  gap:14px;
}
.panel-block{
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow-soft);
}
.status-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.status-title{
  margin:0;
  font-size:16px;
  font-weight:800;
}
.badge-soft{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#d8deea;
  font-size:12px;
  white-space:nowrap;
}
.badge-soft.accent{
  background:rgba(255,61,127,.14);
  border-color:rgba(255,61,127,.22);
  color:#ffd4e4;
}
.badge-soft.cyan{
  background:rgba(22,214,195,.12);
  border-color:rgba(22,214,195,.22);
  color:#c8fff8;
}
.badge-soft.blue{
  background:rgba(74,164,255,.12);
  border-color:rgba(74,164,255,.22);
  color:#d2e8ff;
}
.status-copy{
  color:var(--muted);
  font-size:13px;
  margin:0 0 14px;
}
.status-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.mini-metric{
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  background:rgba(255,255,255,.025);
  padding:10px 12px;
}
.mini-metric span{
  display:block;
  color:var(--muted);
  font-size:12px;
}
.mini-metric strong{
  display:block;
  margin-top:4px;
  font-size:14px;
}
.badge-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.badge-cloud .badge-soft{font-weight:600}
.quick-links{
  display:grid;
  gap:10px;
}
.panel-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:11px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.025);
  color:#eef1f6;
  font-size:14px;
}
.panel-link:hover{
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.05);
  transform:translateY(-1px);
}
.panel-note{
  padding:11px 12px;
  border-radius:8px;
  border-left:3px solid var(--accent2);
  background:rgba(22,214,195,.08);
  color:#dffdf8;
  font-size:13px;
}
.compare-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.plan-card{
  height:100%;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  padding:16px;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
}
.plan-card.highlight{
  border-color:rgba(255,61,127,.28);
  box-shadow:0 18px 36px rgba(255,61,127,.08), var(--shadow-soft);
}
.plan-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.plan-title{
  margin:0;
  font-size:18px;
  font-weight:800;
}
.plan-price{
  color:#ffd9e8;
  font-size:12px;
  white-space:nowrap;
  padding-top:3px;
}
.plan-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.1);
  color:#d7deea;
  font-size:12px;
}
.plan-tag.accent{
  background:rgba(255,61,127,.1);
  border-color:rgba(255,61,127,.2);
  color:#ffd6e5;
}
.plan-features{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
}
.plan-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.plan-row:first-child{border-top:0;padding-top:0}
.plan-row dt{
  margin:0;
  color:var(--muted);
  font-size:13px;
  white-space:nowrap;
}
.plan-row dd{
  margin:0;
  text-align:right;
  color:var(--text);
  font-size:13px;
}
.plan-action{
  margin-top:auto;
  padding-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.level-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.level-card{
  min-height:100%;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  padding:16px;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
}
.level-card .flag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#d8deea;
  font-size:12px;
  margin-bottom:12px;
}
.level-card h3{
  margin:0;
  font-size:18px;
  font-weight:800;
}
.level-card p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
}
.level-list{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  gap:10px;
}
.level-list li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.06);
  font-size:13px;
}
.level-list li:first-child{border-top:0;padding-top:0}
.level-list span:first-child{color:var(--muted)}
.level-list span:last-child{text-align:right}
.level-foot{
  margin-top:auto;
  padding-top:14px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.preview-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.preview-card{
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  padding:12px;
  box-shadow:var(--shadow-soft);
  height:100%;
  display:flex;
  flex-direction:column;
}
.preview-art{
  position:relative;
  aspect-ratio:4/5;
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(150deg, rgba(255,61,127,.36), rgba(255,255,255,.03) 40%, rgba(22,214,195,.18)),
    linear-gradient(180deg, #182033, #101420);
}
.preview-art::before{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:6px;
  border:1px solid rgba(255,255,255,.1);
  background:repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 10px, transparent 10px 22px);
  opacity:.55;
}
.preview-art::after{
  content:attr(data-label);
  position:absolute;
  left:14px;
  bottom:14px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(13,15,20,.85);
  color:#fff;
  font-size:12px;
  border:1px solid rgba(255,255,255,.14);
}
.preview-art.art-2{
  background:
    linear-gradient(150deg, rgba(74,164,255,.32), rgba(255,255,255,.03) 40%, rgba(255,184,74,.16)),
    linear-gradient(180deg, #1a2232, #0f141d);
}
.preview-art.art-3{
  background:
    linear-gradient(150deg, rgba(22,214,195,.3), rgba(255,255,255,.03) 40%, rgba(255,61,127,.16)),
    linear-gradient(180deg, #1a2232, #0f141d);
}
.preview-art.art-4{
  background:
    linear-gradient(150deg, rgba(255,184,74,.32), rgba(255,255,255,.03) 40%, rgba(74,164,255,.14)),
    linear-gradient(180deg, #1a2232, #0f141d);
}
.preview-body{
  padding:12px 2px 0;
  display:grid;
  gap:8px;
}
.preview-tags{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.preview-tags .badge-soft{font-size:11px}
.preview-card h3{
  margin:0;
  font-size:17px;
  line-height:1.22;
  font-weight:800;
}
.preview-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}
.preview-foot{
  margin-top:auto;
  padding-top:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.preview-foot .tiny{
  color:var(--soft);
  font-size:12px;
}
.news-layout{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:16px;
}
.news-list-wrap,
.news-side{
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow-soft);
}
.news-list-wrap{padding:14px}
.news-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:12px;
}
.news-head h3{
  margin:0;
  font-size:18px;
  font-weight:800;
}
.news-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.news-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
}
.news-list li{
  border-top:1px solid rgba(255,255,255,.06);
}
.news-list li:first-child{border-top:0}
.news-item{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
  align-items:flex-start;
}
.news-meta{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:6px;
  font-size:12px;
  color:var(--muted);
}
.news-meta .badge-soft{padding:5px 8px}
.news-title{
  font-size:15px;
  font-weight:700;
  line-height:1.45;
}
.news-title:hover{color:#fff}
.news-side{
  padding:16px;
}
.sticky-note{
  position:sticky;
  top:104px;
  display:grid;
  gap:14px;
}
.summary-block{
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  background:rgba(255,255,255,.025);
  padding:14px;
}
.summary-block h3{
  margin:0 0 10px;
  font-size:16px;
  font-weight:800;
}
.summary-block p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}
.pager{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.pager .page-btn{
  min-width:40px;
  height:38px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#dfe5ef;
  font-weight:700;
}
.pager .page-btn.active,
.pager .page-btn:hover{
  background:rgba(255,61,127,.14);
  border-color:rgba(255,61,127,.24);
  color:#fff;
}
.review-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.review-summary{
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  box-shadow:var(--shadow-soft);
  padding:16px;
  display:grid;
  gap:12px;
}
.review-score{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}
.review-score strong{
  font-size:34px;
  line-height:1;
}
.review-score span{
  color:var(--muted);
  font-size:13px;
}
.review-points{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.review-item{
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  padding:16px;
  box-shadow:var(--shadow-soft);
  display:grid;
  gap:12px;
}
.review-item blockquote{
  margin:0;
  color:#e9edf5;
  font-size:14px;
  line-height:1.75;
}
.review-item .from{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  color:var(--muted);
  font-size:12px;
}
.offer-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:16px;
}
.offer-box{
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  padding:18px;
  box-shadow:var(--shadow-soft);
}
.offer-box h3{
  margin:0;
  font-size:24px;
  font-weight:900;
}
.offer-box p{
  margin:12px 0 0;
  color:var(--muted);
  font-size:14px;
}
.countdown{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:16px 0;
}
.count-item{
  min-width:84px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.025);
  padding:12px 10px;
  text-align:center;
}
.count-item strong{
  display:block;
  font-size:24px;
  line-height:1;
  color:#fff;
}
.count-item span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:12px;
}
.offer-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.offer-steps{
  display:grid;
  gap:12px;
}
.ladder-card{
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  background:rgba(255,255,255,.025);
  padding:14px;
}
.ladder-card .row-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  margin-bottom:8px;
}
.ladder-card h4{
  margin:0;
  font-size:16px;
  font-weight:800;
}
.ladder-card .step-copy{
  color:var(--muted);
  font-size:13px;
  margin:0 0 10px;
}
.bar{
  height:8px;
  background:rgba(255,255,255,.06);
  border-radius:999px;
  overflow:hidden;
}
.bar span{
  display:block;
  height:100%;
  border-radius:999px;
}
.bar.accent span{background:linear-gradient(90deg, var(--accent), #ff7aa8)}
.bar.cyan span{background:linear-gradient(90deg, var(--accent2), #66f1e5)}
.bar.blue span{background:linear-gradient(90deg, var(--accent3), #8ec4ff)}
.faq-wrap{
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.accordion{
  --bs-accordion-bg:transparent;
  --bs-accordion-border-color:rgba(255,255,255,.06);
  --bs-accordion-btn-bg:transparent;
  --bs-accordion-btn-color:var(--text);
  --bs-accordion-active-bg:rgba(255,61,127,.08);
  --bs-accordion-active-color:var(--text);
  --bs-accordion-btn-focus-box-shadow:none;
  --bs-accordion-btn-padding-x:18px;
  --bs-accordion-btn-padding-y:16px;
  --bs-accordion-body-padding-x:18px;
  --bs-accordion-body-padding-y:6px 18px 18px;
}
.accordion-item{
  background:transparent;
  border-left:0;
  border-right:0;
}
.accordion-item:first-child{border-top:0}
.accordion-item:last-child{border-bottom:0}
.accordion-button{
  background:transparent;
  font-weight:800;
  box-shadow:none;
}
.accordion-button:not(.collapsed){
  color:#fff;
  background:rgba(255,61,127,.08);
  box-shadow:none;
}
.accordion-button::after{
  filter:brightness(1.3);
}
.accordion-body{
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.cta-band{
  border:1px solid rgba(255,255,255,.09);
  border-radius:var(--radius);
  background:
    linear-gradient(135deg, rgba(255,61,127,.14), rgba(22,214,195,.08)),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  padding:22px;
  box-shadow:var(--shadow);
}
.cta-band h2{
  margin:0;
  font-size:28px;
  line-height:1.12;
  font-weight:900;
}
.cta-band p{
  margin:12px 0 0;
  color:#d7deea;
  max-width:760px;
}
.cta-line{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.footer{
  padding:28px 0 34px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.01);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .9fr;
  gap:18px;
}
.footer-brand{
  display:grid;
  gap:12px;
}
.footer-brand h3{
  margin:0;
  font-size:18px;
  font-weight:900;
}
.footer-brand p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  max-width:460px;
}
.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.footer-links a{
  color:#d9e0ea;
  font-size:14px;
}
.footer-links a:hover{color:#fff}
.footer-note{
  display:grid;
  gap:10px;
  color:var(--muted);
  font-size:13px;
}
.footer-note .top-line{
  color:#e5eaf2;
  font-weight:700;
}
.footer-bottom{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.06);
  color:var(--soft);
  font-size:12px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.label-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.label-row .badge-soft{font-size:11px}
@media (max-width: 1199px){
  .preview-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 991px){
  .hero-grid,
  .compare-grid,
  .level-grid,
  .news-layout,
  .review-grid,
  .offer-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .navbar-collapse{
    margin-top:12px;
    padding:14px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:var(--radius);
    background:rgba(18,23,35,.98);
  }
  .nav-actions{
    margin-left:0;
    padding-top:10px;
  }
  .sticky-note{position:static}
  .brand-text{max-width:none}
}
@media (max-width: 767px){
  .section{padding:28px 0}
  .hero-copy h1{font-size:34px;max-width:none}
  .section-head h2,
  .cta-band h2{font-size:24px}
  .hero-copy .hero-lead,
  .section-head p,
  .cta-band p{font-size:14px}
  .top-strip .notice{display:none}
  .preview-grid{grid-template-columns:1fr}
  .status-grid{grid-template-columns:1fr}
  .offer-actions .btn,
  .hero-actions .btn,
  .cta-line .btn,
  .plan-action .btn,
  .level-foot .btn,
  .panel-link{
    width:100%;
    justify-content:center;
  }
  .plan-row,
  .news-item,
  .review-score,
  .status-head,
  .offer-box .d-flex{
    flex-direction:column;
    align-items:flex-start;
  }
  .news-head{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width: 520px){
  .navbar .navbar-brand{
    gap:10px;
  }
  .brand-text{
    font-size:15px;
  }
  .hero{padding-top:24px}
  .hero-copy .eyebrow,
  .section-kicker,
  .badge-soft,
  .panel-link,
  .top-strip .top-action,
  .stat-pill{
    font-size:12px;
  }
  .hero-actions,
  .cta-line{
    gap:8px;
  }
  .btn{
    width:100%;
  }
  .countdown{
    gap:8px;
  }
  .count-item{
    min-width:calc(33.333% - 6px);
    flex:1 1 0;
  }
}

/* roulang page: category2 */
:root {
  --bg: #0b0d11;
  --bg-2: #10141a;
  --surface: #141922;
  --surface-2: #191f29;
  --surface-3: #1e2530;
  --text: #f3f2ee;
  --muted: #a4a9b4;
  --line: rgba(255,255,255,.09);
  --line-2: rgba(255,255,255,.14);
  --accent: #ff2d6d;
  --accent-2: #15d1c3;
  --accent-3: #2f9bff;
  --accent-4: #ffd166;
  --shadow: 0 14px 34px rgba(0,0,0,.35);
  --shadow-soft: 0 8px 20px rgba(0,0,0,.24);
  --radius: 8px;
  --radius-sm: 6px;
  --container-pad: clamp(16px, 3vw, 28px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0) 20%),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--bg);
  letter-spacing: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
  font: inherit;
}
button {
  border: 0;
  background: none;
  color: inherit;
}
:focus-visible {
  outline: 2px solid rgba(21, 209, 195, .95);
  outline-offset: 2px;
}

.container-xl {
  max-width: 1280px;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: saturate(130%) blur(10px);
}

.top-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 15, .96);
}
.top-strip-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}
.top-strip .domain {
  color: rgba(255,255,255,.92);
  font-weight: 600;
  letter-spacing: .2px;
}
.top-strip .notice {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.top-strip .notice span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-strip .top-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.top-strip .top-action:hover {
  color: #fff;
}

.navbar {
  padding: 14px 0;
  background: rgba(12, 15, 20, .97);
  border-bottom: 1px solid var(--line);
}
.navbar .container-xl {
  display: flex;
  align-items: center;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0;
  margin-right: 22px;
}
.brand-mark {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, var(--accent) 0%, #ff6b93 60%, #ffb2c8 100%);
  box-shadow: 0 0 0 4px rgba(255,45,109,.14);
  flex: 0 0 auto;
}
.brand-text {
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-toggler {
  margin-left: auto;
  color: var(--text);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.02);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-collapse {
  width: 100%;
}
.navbar-nav {
  gap: 6px;
}
.nav-link {
  color: rgba(243,242,238,.76);
  padding: 10px 14px !important;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
}
.nav-link:hover,
.nav-link:focus {
  color: #fff;
  background: rgba(255,255,255,.03);
  border-color: var(--line);
}
.nav-link.active {
  color: #fff;
  background: rgba(255,45,109,.12);
  border-color: rgba(255,45,109,.34);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  border-radius: var(--radius);
  padding: 10px 14px;
  font-weight: 700;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,.02);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow-soft);
}
.btn-rose {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #ff5e84 100%);
  border-color: rgba(255,45,109,.42);
  box-shadow: 0 10px 20px rgba(255,45,109,.15);
}
.btn-rose:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff4176 0%, #ff718f 100%);
  box-shadow: 0 14px 24px rgba(255,45,109,.22);
}
.btn-cyan {
  color: #061012;
  background: linear-gradient(135deg, var(--accent-2) 0%, #83fff0 100%);
  border-color: rgba(21,209,195,.45);
}
.btn-cyan:hover {
  color: #061012;
  box-shadow: 0 12px 24px rgba(21,209,195,.18);
}
.btn-soft {
  color: var(--text);
  background: rgba(255,255,255,.03);
  border-color: var(--line);
}

main {
  display: block;
}

.section-shell {
  padding: 28px 0 22px;
}
.section-shell + .section-shell {
  border-top: 1px solid rgba(255,255,255,.05);
}
.section-head {
  margin-bottom: 16px;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #ffcfdb;
  letter-spacing: .2px;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-kicker i {
  color: var(--accent-4);
}
.section-title {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  margin: 0;
  font-weight: 800;
}
.section-desc {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.breadcrumb-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.breadcrumb-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb-line a {
  color: rgba(243,242,238,.86);
}
.breadcrumb-line span {
  color: rgba(164,169,180,.72);
}

.hero-section {
  padding: 18px 0 10px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 18px;
  align-items: stretch;
}
.hero-copy,
.coupon-wall {
  min-width: 0;
}
.hero-copy {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #ffd4de;
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.hero-tagline .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255,45,109,.14);
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 62ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.badge-soft.rose {
  background: rgba(255,45,109,.12);
  border-color: rgba(255,45,109,.28);
  color: #ffd8e2;
}
.badge-soft.cyan {
  background: rgba(21,209,195,.12);
  border-color: rgba(21,209,195,.28);
  color: #c8fffb;
}
.badge-soft.blue {
  background: rgba(47,155,255,.12);
  border-color: rgba(47,155,255,.28);
  color: #d6ebff;
}
.badge-soft.gold {
  background: rgba(255,209,102,.12);
  border-color: rgba(255,209,102,.28);
  color: #fff0c5;
}

.coupon-wall {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 14px;
  align-items: stretch;
}
.coupon-main,
.coupon-mini,
.quick-panel,
.feed-panel,
.compare-panel,
.preview-panel,
.faq-panel,
.cta-panel,
.rank-card,
.update-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(20,25,34,.92);
  box-shadow: var(--shadow-soft);
}
.coupon-main {
  padding: 20px;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255,45,109,.12), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.coupon-main .coupon-head,
.coupon-mini .coupon-head,
.rank-card .card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.coupon-title {
  font-size: 13px;
  color: #ffd6e0;
  font-weight: 800;
  letter-spacing: .2px;
}
.coupon-main h2 {
  margin: 16px 0 0;
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.06;
  font-weight: 900;
  text-wrap: balance;
}
.coupon-main p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 42ch;
}
.coupon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.coupon-mini {
  padding: 16px;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.coupon-mini strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  margin-top: 10px;
}
.coupon-mini p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.coupon-mini .mini-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #dffdf8;
}
.coupon-mini .mini-state i {
  color: var(--accent-2);
}
.coupon-mini.alt {
  background: linear-gradient(180deg, rgba(21,209,195,.10), rgba(255,255,255,.02));
}
.coupon-mini.alt .mini-state i {
  color: var(--accent-3);
}
.coupon-stack {
  display: grid;
  gap: 14px;
}

.trust-strip {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: var(--radius);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  background: rgba(255,255,255,.02);
}
.trust-strip strong {
  color: var(--text);
}
.trust-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feed-wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: 18px;
  align-items: start;
}
.feed-panel {
  padding: 20px;
}
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.sort-chip {
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.03);
  color: var(--text);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .18s ease;
}
.sort-chip.active,
.sort-chip:hover {
  background: rgba(255,45,109,.12);
  border-color: rgba(255,45,109,.32);
  color: #fff;
}
.update-list {
  display: grid;
  gap: 14px;
}
.update-item {
  padding: 16px;
}
.update-item-inner {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.update-meta {
  padding-right: 10px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.update-time {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.update-date {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}
.update-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}
.update-body p {
  margin: 10px 0 0;
  color: var(--muted);
}
.label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.label-row .badge-soft {
  padding: 6px 10px;
}
.stream-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.stream-actions .btn {
  padding: 8px 12px;
  font-size: 14px;
}
.update-item details {
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
}
.update-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}
.update-item summary::-webkit-details-marker {
  display: none;
}
.update-item details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.quick-panel {
  padding: 18px;
  position: sticky;
  top: 96px;
}
.quick-panel h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}
.quick-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}
.panel-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(47,155,255,.25);
  background: rgba(47,155,255,.08);
  color: #daefff;
  font-size: 13px;
}
.panel-note strong {
  color: #fff;
}
.summary-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.summary-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.summary-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.summary-item .left {
  min-width: 0;
}
.summary-item .left strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
}
.summary-item .left span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.summary-item .state {
  white-space: nowrap;
  font-size: 12px;
  color: #fff;
}
.entry-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.entry-grid .btn {
  width: 100%;
}
.entry-mini {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.compare-panel {
  padding: 20px;
}
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
}
.compare-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  vertical-align: top;
}
.compare-table th {
  background: rgba(255,45,109,.14);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.compare-table td {
  color: var(--text);
  background: rgba(255,255,255,.02);
}
.compare-table tr:nth-child(even) td {
  background: rgba(255,255,255,.03);
}
.compare-table .muted {
  color: var(--muted);
}
.compare-table .cta-cell {
  width: 1%;
  white-space: nowrap;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.rank-card {
  padding: 18px;
  min-height: 100%;
}
.rank-card h3 {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 800;
}
.rank-card p {
  margin: 10px 0 0;
  color: var(--muted);
}
.rank-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.rank-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #e9edf3;
  font-size: 14px;
}
.rank-list li i {
  color: var(--accent-2);
  flex: 0 0 auto;
  margin-top: 3px;
}
.rank-card .card-foot {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: 18px;
  align-items: start;
}
.preview-feature,
.preview-side,
.faq-panel,
.cta-panel {
  padding: 20px;
}
.preview-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .7fr);
  gap: 14px;
  align-items: start;
}
.preview-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,45,109,.18), rgba(255,45,109,0) 28%),
    linear-gradient(135deg, rgba(21,209,195,.14), rgba(21,209,195,0) 40%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}
.preview-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 52%, rgba(0,0,0,.4) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 17px);
  opacity: .45;
}
.preview-frame .ribbon {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
}
.preview-frame .ribbon-row {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}
.preview-frame .ribbon-row .info {
  max-width: 66%;
}
.preview-frame .ribbon-row strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}
.preview-frame .ribbon-row span {
  display: block;
  margin-top: 6px;
  color: rgba(243,242,238,.76);
  font-size: 13px;
}
.preview-side {
  display: grid;
  gap: 14px;
}
.preview-side .mini-preview {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.mini-preview .thumb {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
  background:
    linear-gradient(180deg, rgba(47,155,255,.16), rgba(47,155,255,0) 42%),
    linear-gradient(135deg, rgba(255,209,102,.14), rgba(255,209,102,0) 50%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  position: relative;
  overflow: hidden;
}
.mini-preview .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0, transparent 58%, rgba(0,0,0,.38) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
  opacity: .55;
}
.mini-preview h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}
.mini-preview p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.09);
  padding: 7px 10px;
  font-size: 12px;
  background: rgba(255,255,255,.03);
  color: var(--text);
}
.tag-chip.rose {
  background: rgba(255,45,109,.10);
  border-color: rgba(255,45,109,.22);
}
.tag-chip.cyan {
  background: rgba(21,209,195,.10);
  border-color: rgba(21,209,195,.22);
}
.tag-chip.blue {
  background: rgba(47,155,255,.10);
  border-color: rgba(47,155,255,.22);
}
.tag-chip.gold {
  background: rgba(255,209,102,.10);
  border-color: rgba(255,209,102,.22);
}
.preview-notes {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.note-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.note-row:first-child {
  border-top: 0;
  padding-top: 0;
}
.note-row strong {
  display: block;
}
.note-row span {
  color: var(--muted);
  font-size: 13px;
}

.faq-panel .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-color: var(--text);
  --bs-accordion-border-color: rgba(255,255,255,.08);
  --bs-accordion-btn-color: var(--text);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: rgba(255,45,109,.08);
  --bs-accordion-active-color: #fff;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
}
.faq-panel .accordion-item {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  background: rgba(255,255,255,.03);
}
.faq-panel .accordion-button {
  padding: 14px 16px;
  font-weight: 800;
  border-radius: 0;
  box-shadow: none;
}
.faq-panel .accordion-button::after {
  background: none;
  content: "";
  width: 18px;
  height: 18px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  background-color: var(--text);
  opacity: .85;
}
.faq-panel .accordion-button:not(.collapsed)::after {
  background-color: var(--accent);
}
.faq-panel .accordion-body {
  color: var(--muted);
  padding: 0 16px 16px;
}
.faq-panel .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .95fr);
  gap: 18px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255,45,109,.10), rgba(21,209,195,.06)),
    rgba(20,25,34,.92);
}
.cta-panel h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.1;
}
.cta-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 58ch;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cta-meta {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.cta-meta .mini-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cta-meta .mini-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.cta-meta .mini-row strong {
  display: block;
  font-size: 15px;
}
.cta-meta .mini-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.page-pill {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.page-pill.active {
  background: rgba(255,45,109,.16);
  border-color: rgba(255,45,109,.35);
}
.page-pill:hover {
  color: #fff;
  border-color: rgba(255,255,255,.22);
}

.footer {
  margin-top: 26px;
  padding: 28px 0 18px;
  background: #0a0c10;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr) minmax(0, .85fr);
  gap: 20px;
  align-items: start;
}
.footer-brand h3,
.footer-note .top-line {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.footer-brand p,
.footer-note {
  color: var(--muted);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: rgba(243,242,238,.82);
}
.footer-links a:hover {
  color: #fff;
}
.footer-note {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.footer-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(243,242,238,.72);
  font-size: 13px;
  flex-wrap: wrap;
}

.table-responsive {
  border-radius: var(--radius);
}

@media (max-width: 1199.98px) {
  .hero-grid,
  .feed-wrap,
  .preview-layout,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .quick-panel {
    position: static;
  }
  .coupon-wall {
    grid-template-columns: 1fr;
  }
  .coupon-main {
    min-height: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar .container-xl {
    flex-wrap: wrap;
  }
  .navbar-collapse {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-actions {
    margin-top: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .top-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 7px 0;
  }
  .top-strip .notice {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .rank-grid {
    grid-template-columns: 1fr;
  }
  .preview-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .section-shell {
    padding: 22px 0 16px;
  }
  .hero-copy,
  .coupon-main,
  .coupon-mini,
  .feed-panel,
  .quick-panel,
  .compare-panel,
  .preview-feature,
  .preview-side,
  .faq-panel,
  .cta-panel {
    padding: 16px;
  }
  .update-item-inner {
    grid-template-columns: 1fr;
  }
  .update-meta {
    padding-right: 0;
    padding-bottom: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .compare-table {
    min-width: 100%;
  }
  .compare-table thead {
    display: none;
  }
  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
  }
  .compare-table tr {
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .compare-table td {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    background: rgba(255,255,255,.02);
  }
  .compare-table td::before {
    content: attr(data-label);
    font-weight: 800;
    color: #fff;
    flex: 0 0 34%;
  }
  .compare-table td.cta-cell {
    white-space: normal;
  }
  .compare-table td.cta-cell::before {
    content: attr(data-label);
  }
  .compare-table td:last-child {
    border-bottom: 0;
  }
  .cta-actions,
  .hero-actions,
  .coupon-actions,
  .entry-mini {
    width: 100%;
  }
  .cta-actions .btn,
  .hero-actions .btn,
  .coupon-actions .btn {
    width: 100%;
  }
  .top-strip .domain,
  .top-strip .top-action {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .breadcrumb-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-copy h1 {
    font-size: 28px;
  }
  .coupon-main h2 {
    font-size: 26px;
  }
  .section-title {
    font-size: 22px;
  }
  .cta-meta .mini-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

/* roulang page: category1 */
:root{
  --bg:#0b0e12;
  --bg-soft:#10141a;
  --panel:#151a22;
  --panel-2:#1a202b;
  --line:rgba(255,255,255,.09);
  --line-strong:rgba(255,255,255,.16);
  --text:#f3efe7;
  --muted:#a9b2bf;
  --muted-2:#7f8a98;
  --rose:#ff436d;
  --rose-2:#ff1f57;
  --cyan:#22d3ee;
  --blue:#4ca3ff;
  --green:#2bd39b;
  --gold:#f5b546;
  --shadow:0 18px 42px rgba(0,0,0,.28);
  --shadow-soft:0 10px 22px rgba(0,0,0,.18);
  --radius:8px;
  --radius-sm:6px;
  --container-pad:1rem;
}
*,
*::before,
*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 140px),
    var(--bg);
  color:var(--text);
  font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,-apple-system,sans-serif;
  line-height:1.6;
  letter-spacing:0;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none;}
a:hover{color:inherit;}
img{max-width:100%;display:block;}
button,input,textarea,select{font:inherit;}
:focus-visible{
  outline:2px solid var(--cyan);
  outline-offset:2px;
}
section{scroll-margin-top:112px;}
.container-xl{
  --bs-gutter-x:1.25rem;
  padding-left:var(--container-pad);
  padding-right:var(--container-pad);
}
.site-header{
  position:sticky;
  top:0;
  z-index:1030;
  background:rgba(11,14,18,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}
.site-header.is-scrolled .top-strip{
  opacity:.92;
}
.site-header.is-scrolled .navbar{
  padding-top:8px;
  padding-bottom:8px;
}
.top-strip{
  border-bottom:1px solid rgba(255,255,255,.05);
  background:#0f1318;
  font-size:.82rem;
  color:var(--muted);
}
.top-strip-inner{
  min-height:32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:5px 0;
}
.domain{
  color:#d7dbe3;
  white-space:nowrap;
}
.notice{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  text-align:center;
}
.notice span{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.12rem .55rem;
  border:1px solid rgba(34,211,238,.24);
  background:rgba(34,211,238,.06);
  border-radius:999px;
  color:#d8f9ff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.top-action{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  color:#fff;
  padding:.2rem .55rem;
  border-radius:999px;
  border:1px solid rgba(255,67,109,.28);
  background:rgba(255,67,109,.08);
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
  white-space:nowrap;
}
.top-action:hover{
  transform:translateY(-1px);
  border-color:rgba(255,67,109,.5);
  background:rgba(255,67,109,.14);
}
.navbar{
  padding:14px 0;
  transition:padding .2s ease;
}
.navbar-brand{
  display:inline-flex;
  align-items:center;
  gap:.7rem;
  font-weight:700;
  color:var(--text);
  min-width:0;
}
.brand-mark{
  width:18px;
  height:18px;
  border-radius:5px;
  background:linear-gradient(135deg,var(--rose),#ff7d54);
  box-shadow:0 0 0 3px rgba(255,67,109,.14);
  flex:0 0 auto;
}
.brand-text{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.navbar-toggler{
  border:1px solid var(--line);
  background:var(--panel);
  color:var(--text);
  border-radius:var(--radius);
  padding:.45rem .6rem;
  box-shadow:none;
}
.navbar-toggler:hover{
  border-color:var(--line-strong);
  background:#1a202a;
}
.navbar-toggler:focus{
  box-shadow:none;
}
.navbar-nav{
  gap:.25rem;
  align-items:center;
}
.nav-link{
  color:var(--muted);
  padding:.55rem .85rem;
  border-radius:var(--radius-sm);
  transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
}
.nav-link:hover,
.nav-link:focus{
  color:#fff;
  background:rgba(255,255,255,.04);
}
.nav-link.active{
  color:#fff;
  background:rgba(255,67,109,.12);
  border:1px solid rgba(255,67,109,.26);
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:.65rem;
}
.btn{
  border-radius:var(--radius);
  font-weight:600;
  border-width:1px;
  box-shadow:none !important;
  transition:transform .18s ease,background .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  letter-spacing:0;
}
.btn:hover{
  transform:translateY(-1px);
}
.btn-ghost{
  color:var(--text);
  background:transparent;
  border-color:var(--line);
}
.btn-ghost:hover{
  color:#fff;
  border-color:var(--line-strong);
  background:rgba(255,255,255,.04);
}
.btn-rose{
  color:#fff;
  background:linear-gradient(135deg,var(--rose),var(--rose-2));
  border-color:rgba(255,67,109,.56);
}
.btn-rose:hover{
  color:#fff;
  background:linear-gradient(135deg,#ff5b81,#ff2d5f);
  border-color:rgba(255,67,109,.72);
}
.btn-cyan{
  color:#061018;
  background:linear-gradient(135deg,#49f1ff,var(--cyan));
  border-color:rgba(34,211,238,.58);
}
.btn-cyan:hover{
  color:#061018;
  background:linear-gradient(135deg,#6bf7ff,#39dbef);
}
.btn-outline-cyan{
  color:#d9fbff;
  background:transparent;
  border-color:rgba(34,211,238,.42);
}
.btn-outline-cyan:hover{
  color:#fff;
  background:rgba(34,211,238,.1);
  border-color:rgba(34,211,238,.64);
}
.btn-sm{
  padding:.48rem .78rem;
  border-radius:var(--radius-sm);
}
.page-shell{min-height:100vh;}
.hero-shell{
  padding:28px 0 18px;
}
.crumbs{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.45rem;
  color:var(--muted);
  font-size:.9rem;
  margin-bottom:14px;
}
.crumbs a{
  color:#d9dee6;
}
.crumbs span:last-child{
  color:var(--rose);
}
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-size:.82rem;
  color:#d8dee8;
  text-transform:none;
  letter-spacing:0;
}
.section-kicker::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:2px;
  background:linear-gradient(135deg,var(--rose),var(--cyan));
  box-shadow:0 0 0 3px rgba(255,255,255,.04);
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}
.section-head h2{
  margin:4px 0 0;
  font-size:1.55rem;
  line-height:1.2;
  letter-spacing:0;
}
.section-head p{
  margin:.4rem 0 0;
  color:var(--muted);
}
.section-action{
  display:inline-flex;
  align-items:center;
  gap:.3rem;
  color:#d9fbff;
  white-space:nowrap;
}
.section-action:hover{
  color:#fff;
}
.surface{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}
.surface:hover{
  border-color:var(--line-strong);
}
.hero-copy,
.hero-panel,
.side-panel,
.cta-slab,
.level-card,
.preview-card,
.compare-mobile,
.accordion-item{
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease;
}
.hero-copy:hover,
.hero-panel:hover,
.side-panel:hover,
.cta-slab:hover,
.level-card:hover,
.preview-card:hover,
.compare-mobile:hover,
.accordion-item:hover{
  border-color:var(--line-strong);
}
.hero-copy{
  padding:28px;
  height:100%;
}
.hero-panel{
  padding:22px;
  height:100%;
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  overflow:hidden;
}
.hero-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(255,255,255,.025),transparent 18%),
    linear-gradient(135deg,rgba(255,67,109,.08),transparent 38%,rgba(34,211,238,.07));
  pointer-events:none;
}
.hero-panel > *{position:relative;z-index:1;}
.mini-row,
.label-row,
.tag-row,
.meta-row,
.footer-bottom,
.panel-head,
.cta-actions,
.side-actions,
.preview-actions,
.card-head,
.list-inline-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.5rem;
}
.mini-row{margin-bottom:14px;}
.chip,
.filter-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:.25rem .72rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:#e7ebf1;
  font-size:.88rem;
  line-height:1.2;
  transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease;
}
.filter-chip{
  cursor:pointer;
  white-space:nowrap;
}
.filter-chip:hover,
.filter-chip.active{
  color:#fff;
  background:rgba(255,67,109,.12);
  border-color:rgba(255,67,109,.3);
}
.filter-chip.active{
  box-shadow:0 0 0 3px rgba(255,67,109,.08);
}
.chip-hot{
  background:rgba(255,67,109,.12);
  border-color:rgba(255,67,109,.3);
}
.chip-cyan{
  background:rgba(34,211,238,.1);
  border-color:rgba(34,211,238,.28);
}
.hero-copy h1{
  font-size:clamp(2rem,3.6vw,3.15rem);
  line-height:1.08;
  letter-spacing:0;
  margin:0 0 14px;
  text-wrap:balance;
}
.hero-lead{
  max-width:62ch;
  color:#d0d6de;
  margin:0 0 18px;
  font-size:1.02rem;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-bottom:20px;
}
.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.metric{
  min-height:84px;
  padding:14px 14px 12px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:var(--panel-2);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.metric strong{
  font-size:1.38rem;
  line-height:1;
  color:#fff;
}
.metric span{
  font-size:.88rem;
  color:var(--muted);
}
.panel-head{
  justify-content:space-between;
}
.status-pill{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-size:.8rem;
  padding:.22rem .62rem;
  border-radius:999px;
  border:1px solid rgba(43,211,155,.3);
  background:rgba(43,211,155,.09);
  color:#c6f7e7;
  white-space:nowrap;
}
.cover-frame{
  position:relative;
  min-height:392px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 18%),
    linear-gradient(135deg, rgba(255,67,109,.58), rgba(30,39,53,.25) 42%, rgba(34,211,238,.34)),
    #131820;
  overflow:hidden;
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}
.cover-frame::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0/24px 24px,
    linear-gradient(180deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0/24px 24px;
  opacity:.16;
  pointer-events:none;
}
.cover-frame > *{position:relative;z-index:1;}
.cover-badge{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:.24rem .55rem;
  border-radius:999px;
  background:rgba(11,14,18,.48);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-size:.82rem;
}
.cover-title{
  font-size:1.6rem;
  line-height:1.12;
  font-weight:700;
  color:#fff;
  margin-top:12px;
  max-width:10ch;
  text-wrap:balance;
}
.cover-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:16px;
}
.cover-box{
  min-height:96px;
  border-radius:var(--radius-sm);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(11,14,18,.34);
  padding:12px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.cover-box .box-kicker{
  color:#cdefff;
  font-size:.82rem;
}
.cover-box .box-value{
  color:#fff;
  font-weight:700;
  font-size:1.04rem;
}
.poster-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.poster-list li{
  display:flex;
  align-items:flex-start;
  gap:.5rem;
  color:#d6dce4;
}
.poster-list i{
  flex:0 0 auto;
  color:var(--cyan);
  width:18px;
  height:18px;
  margin-top:.12rem;
}
.block{
  padding:26px 0;
}
.compare-wrap{
  padding:0;
  overflow:hidden;
}
.compare-table{
  margin:0;
  color:var(--text);
  --bs-table-bg:transparent;
  --bs-table-striped-bg:rgba(255,255,255,.02);
  --bs-table-color:var(--text);
  border-color:var(--line);
}
.compare-table thead th{
  background:rgba(255,67,109,.11);
  color:#fff;
  border-color:var(--line);
  font-weight:700;
  font-size:.95rem;
  padding:1rem .9rem;
}
.compare-table tbody td{
  background:transparent;
  border-color:var(--line);
  padding:1rem .9rem;
  vertical-align:middle;
}
.compare-table tbody tr.featured td{
  background:rgba(34,211,238,.05);
}
.compare-table tbody tr:hover td{
  background:rgba(255,255,255,.03);
}
.table-badge{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.24rem .55rem;
  border-radius:999px;
  font-size:.82rem;
  border:1px solid transparent;
}
.table-badge.rose{
  color:#ffd9e3;
  background:rgba(255,67,109,.12);
  border-color:rgba(255,67,109,.24);
}
.table-badge.cyan{
  color:#d8fbff;
  background:rgba(34,211,238,.11);
  border-color:rgba(34,211,238,.24);
}
.table-badge.blue{
  color:#ddeaff;
  background:rgba(76,163,255,.12);
  border-color:rgba(76,163,255,.24);
}
.compare-mobile{
  padding:16px;
  margin-bottom:12px;
}
.compare-mobile:last-child{margin-bottom:0;}
.compare-mobile .mobile-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.compare-mobile h3{
  margin:0;
  font-size:1.08rem;
}
.compare-mobile p{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}
.compare-mobile .mobile-body{
  display:grid;
  gap:10px;
}
.compare-mobile .mobile-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:.72rem .8rem;
  border-radius:var(--radius-sm);
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}
.compare-mobile .mobile-row span:first-child{
  color:var(--muted);
}
.compare-mobile .mobile-row strong{
  text-align:right;
}
.level-card{
  height:100%;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.level-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.level-title{
  margin:2px 0 0;
  font-size:1.18rem;
}
.swatch{
  width:14px;
  height:14px;
  border-radius:4px;
  display:inline-block;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 0 0 3px rgba(255,255,255,.04);
}
.swatch.rose{background:var(--rose);}
.swatch.cyan{background:var(--cyan);}
.swatch.blue{background:var(--blue);}
.level-copy{
  color:var(--muted);
  margin:0;
}
.level-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.level-list li{
  display:flex;
  align-items:flex-start;
  gap:.5rem;
  color:#d7dde6;
}
.level-list i{
  color:var(--green);
  width:18px;
  height:18px;
  flex:0 0 auto;
  margin-top:.13rem;
}
.level-actions{
  margin-top:auto;
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
}
.preview-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.preview-card{
  height:100%;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.thumb{
  aspect-ratio:4/5;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  padding:14px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.thumb::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.36));
  pointer-events:none;
}
.thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0/26px 26px,
    linear-gradient(180deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0/26px 26px;
  opacity:.14;
  pointer-events:none;
}
.thumb > *{position:relative;z-index:1;}
.thumb.rose{
  background:linear-gradient(135deg, rgba(255,67,109,.72), rgba(22,26,33,.25) 56%, rgba(255,184,88,.24));
}
.thumb.cyan{
  background:linear-gradient(135deg, rgba(34,211,238,.58), rgba(22,26,33,.28) 52%, rgba(76,163,255,.24));
}
.thumb.blue{
  background:linear-gradient(135deg, rgba(76,163,255,.56), rgba(22,26,33,.3) 50%, rgba(255,67,109,.26));
}
.thumb.green{
  background:linear-gradient(135deg, rgba(43,211,155,.48), rgba(22,26,33,.28) 52%, rgba(34,211,238,.22));
}
.thumb-label{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:.25rem .52rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(8,11,15,.36);
  color:#fff;
  font-size:.8rem;
}
.thumb-title{
  margin:0;
  color:#fff;
  font-size:1.18rem;
  line-height:1.12;
  max-width:10ch;
  text-wrap:balance;
}
.thumb-note{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
}
.thumb-note .badge{
  background:rgba(11,14,18,.42) !important;
  border:1px solid rgba(255,255,255,.13);
  color:#fff;
  font-weight:500;
}
.preview-body{
  padding:15px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.preview-body h3{
  margin:0;
  font-size:1.08rem;
}
.preview-body p{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}
.preview-meta{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
}
.preview-meta .badge{
  background:rgba(255,255,255,.03);
  color:#dfe5ec;
  border:1px solid var(--line);
  font-weight:500;
}
.preview-actions{
  margin-top:auto;
  justify-content:space-between;
}
.pager-wrap{
  margin-top:18px;
}
.pagination{
  --bs-pagination-bg:var(--panel);
  --bs-pagination-border-color:var(--line);
  --bs-pagination-color:var(--muted);
  --bs-pagination-hover-bg:#1e2531;
  --bs-pagination-hover-border-color:var(--line-strong);
  --bs-pagination-hover-color:#fff;
  --bs-pagination-focus-bg:#1e2531;
  --bs-pagination-focus-border-color:var(--cyan);
  --bs-pagination-focus-color:#fff;
  --bs-pagination-active-bg:var(--rose);
  --bs-pagination-active-border-color:rgba(255,67,109,.65);
  --bs-pagination-active-color:#fff;
  gap:.35rem;
}
.page-link{
  border-radius:var(--radius-sm) !important;
  box-shadow:none !important;
}
.side-panel{
  padding:20px;
  position:sticky;
  top:96px;
}
.side-panel h3{
  margin:0 0 8px;
  font-size:1.12rem;
}
.side-panel p{
  color:var(--muted);
  margin:0 0 14px;
}
.side-box{
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  background:rgba(255,255,255,.03);
  padding:14px;
  margin-bottom:14px;
}
.side-box:last-child{margin-bottom:0;}
.side-box .label{
  color:var(--muted);
  font-size:.84rem;
  margin-bottom:4px;
}
.side-box .value{
  color:#fff;
  font-weight:700;
}
.side-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.side-list li{
  display:flex;
  align-items:flex-start;
  gap:.5rem;
  color:#d7dde6;
}
.side-list i{
  color:var(--cyan);
  width:18px;
  height:18px;
  margin-top:.12rem;
}
.faq-wrap{
  padding:0;
  border:none;
  background:transparent;
  box-shadow:none;
}
.accordion-item{
  margin-bottom:12px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.accordion-item:last-child{margin-bottom:0;}
.accordion-button{
  background:var(--panel);
  color:#fff;
  border:none;
  box-shadow:none !important;
  padding:1rem 1.1rem;
  gap:.5rem;
}
.accordion-button::after{display:none;}
.accordion-button .faq-icon{
  margin-left:auto;
  transition:transform .2s ease,color .2s ease;
  color:var(--muted);
  width:18px;
  height:18px;
  flex:0 0 auto;
}
.accordion-button:not(.collapsed){
  color:#fff;
  background:rgba(255,67,109,.08);
}
.accordion-button:not(.collapsed) .faq-icon{
  transform:rotate(180deg);
  color:#fff;
}
.accordion-button:focus{
  box-shadow:none;
}
.accordion-body{
  color:var(--muted);
  padding:1rem 1.1rem 1.1rem;
  background:linear-gradient(180deg, rgba(255,255,255,.015), transparent);
}
.cta-band{
  padding:10px 0 36px;
}
.cta-slab{
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:
    linear-gradient(135deg, rgba(255,67,109,.16), rgba(34,211,238,.08)),
    var(--panel);
  border:1px solid rgba(255,67,109,.24);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.cta-slab h2{
  margin:0 0 8px;
  font-size:1.5rem;
}
.cta-slab p{
  margin:0;
  color:#d6dce4;
  max-width:64ch;
}
.cta-summary{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.summary-item{
  padding:12px 13px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.summary-item .label{
  display:block;
  color:var(--muted);
  font-size:.82rem;
  margin-bottom:3px;
}
.summary-item .value{
  color:#fff;
  font-weight:700;
}
.footer{
  background:#0a0d11;
  border-top:1px solid var(--line);
  padding:30px 0 18px;
  color:var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr;
  gap:24px;
  align-items:start;
}
.footer-brand h3{
  color:#fff;
  margin:0 0 10px;
  font-size:1.1rem;
}
.footer-brand p{
  margin:0 0 14px;
  color:var(--muted);
}
.badge-soft{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.3rem .6rem;
  border-radius:999px;
  background:rgba(255,67,109,.1);
  border:1px solid rgba(255,67,109,.22);
  color:#ffdce5;
  font-size:.84rem;
}
.badge-soft.cyan{
  background:rgba(34,211,238,.1);
  border-color:rgba(34,211,238,.22);
  color:#dbfcff;
}
.badge-soft.blue{
  background:rgba(76,163,255,.11);
  border-color:rgba(76,163,255,.22);
  color:#dce9ff;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:9px;
}
.footer-links a{
  color:var(--muted);
  transition:color .18s ease,transform .18s ease;
}
.footer-links a:hover{
  color:#fff;
}
.footer-note{
  padding:16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
}
.footer-note .top-line{
  color:#fff;
  font-weight:700;
  margin-bottom:8px;
}
.footer-note div + div{
  margin-top:6px;
}
.footer-bottom{
  justify-content:space-between;
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
  color:var(--muted-2);
  font-size:.92rem;
}
.text-link{
  color:#d7fbff;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
}
.text-link:hover{color:#fff;}
.list-check{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.list-check li{
  display:flex;
  gap:.5rem;
  align-items:flex-start;
  color:#d8dee7;
}
.list-check i{
  color:var(--green);
  width:18px;
  height:18px;
  margin-top:.12rem;
  flex:0 0 auto;
}
hr.soft{
  border-color:var(--line);
  opacity:1;
}
@media (max-width: 991.98px){
  .notice{justify-content:flex-start;text-align:left;}
  .navbar-nav{
    align-items:stretch;
    padding-top:12px;
    padding-bottom:12px;
  }
  .nav-actions{
    width:100%;
    padding-top:6px;
    flex-wrap:wrap;
  }
  .nav-actions .btn{
    flex:1 1 180px;
  }
  .hero-copy,
  .hero-panel,
  .side-panel,
  .cta-slab,
  .level-card,
  .preview-card{
    height:auto;
  }
  .side-panel{
    position:static;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
  .footer-brand{
    grid-column:1 / -1;
  }
  .cta-slab{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width: 767.98px){
  .top-strip-inner{
    flex-wrap:wrap;
    justify-content:space-between;
    gap:8px;
  }
  .domain,
  .top-action{
    flex:0 0 auto;
  }
  .notice{
    order:3;
    width:100%;
    justify-content:flex-start;
  }
  .hero-shell{
    padding-top:18px;
  }
  .hero-copy{
    padding:20px;
  }
  .hero-metrics{
    grid-template-columns:1fr;
  }
  .cover-frame{
    min-height:340px;
  }
  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .preview-grid{
    grid-template-columns:1fr;
  }
  .cta-summary{
    grid-template-columns:1fr;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
}
@media (max-width: 519.98px){
  .container-xl{
    --container-pad:.85rem;
  }
  .hero-copy h1{
    font-size:1.85rem;
  }
  .section-head h2{
    font-size:1.32rem;
  }
  .cover-title{
    font-size:1.45rem;
  }
  .thumb-title{
    font-size:1.06rem;
  }
  .cta-slab,
  .hero-copy,
  .hero-panel,
  .side-panel{
    padding:16px;
  }
  .top-strip{
    font-size:.77rem;
  }
  .chip,
  .filter-chip{
    font-size:.82rem;
  }
}
