/* roulang page: index */
:root{
  --page-bg:#100C14;
  --surface:#1A1422;
  --surface-2:#241B2D;
  --gold:#D4A96A;
  --gold-light:#EFC88F;
  --gold-pale:rgba(255,211,154,.14);
  --coral:#E2695F;
  --green:#63A783;
  --purple:#7A6E93;
  --text-main:#F5EFE6;
  --text-sub:#AFA4B8;
  --text-muted:#776D82;
  --white:#FFFFFF;
  --radius:16px;
  --radius-sm:10px;
  --shadow:0 12px 30px rgba(0,0,0,.25);
  --transition:all .25s cubic-bezier(.4,0,.2,1);
  --container:1200px;
  --font-sans:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--page-bg);
  color:var(--text-main);
  font-family:var(--font-sans);
  line-height:1.8;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;border-radius:12px}
a{color:var(--gold);text-decoration:none;transition:var(--transition)}
a:hover{color:var(--gold-light)}
ul{list-style:none}
button,input,select,textarea{font-family:inherit;outline:none}

.container{max-width:var(--container);margin:0 auto;padding:0 clamp(16px,3vw,32px);position:relative;z-index:2}
.section{padding:76px 0;position:relative}
.section-sm{padding:50px 0}
.eyebrow{
  display:flex;align-items:center;gap:10px;
  font-size:12px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--gold);margin-bottom:16px;
}
.eyebrow-line{width:28px;height:1px;background:var(--gold);opacity:.6}
.h2-title{
  font-size:clamp(26px,3.4vw,40px);
  font-weight:800;
  line-height:1.3;
  color:var(--white);
  letter-spacing:.01em;
  margin-bottom:12px;
}
.h2-sub{color:var(--text-sub);font-size:15px;max-width:560px;line-height:1.8}

/* 顶部导航 */
.site-header{
  position:fixed;width:100%;top:0;left:0;z-index:1000;
  background:rgba(16,12,20,.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(212,169,106,.14);
  box-shadow:0 4px 30px rgba(0,0,0,.2);
}
.header-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(16px,3vw,32px);
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.site-logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.logo-icon{
  width:38px;height:38px;border-radius:10px;
  background:linear-gradient(145deg,#D4A96A,#B98A4F);
  display:flex;align-items:center;justify-content:center;
  color:#241B2D;font-size:16px;font-weight:900;
  box-shadow:0 4px 14px rgba(212,169,106,.3);
}
.logo-text{font-size:20px;font-weight:800;color:var(--white);letter-spacing:.02em}
.logo-text span{color:var(--gold)}
.nav-desktop{display:flex;align-items:center;gap:36px;margin:0}
.nav-desktop li a{
  color:var(--text-sub);
  font-size:15px;
  font-weight:500;
  padding:8px 0;
  position:relative;
  transition:var(--transition);
  white-space:nowrap;
}
.nav-desktop li a::after{
  content:'';position:absolute;left:0;bottom:-2px;
  width:0;height:2px;background:var(--gold);transition:var(--transition);
}
.nav-desktop li a:hover,
.nav-desktop li.active a{
  color:var(--gold-light);
}
.nav-desktop li.active a::after{width:100%}
.header-actions{display:flex;align-items:center;gap:12px}
.nav-cta{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 20px;
  border-radius:12px;
  background:linear-gradient(135deg,#D4A96A,#EFC88F);
  color:#241B2d !important;
  font-weight:700;
  font-size:14px;
  box-shadow:0 4px 18px rgba(212,169,106,.25);
  border:1px solid rgba(255,232,194,.5);
  transition:var(--transition);
}
.nav-cta:hover{
  background:linear-gradient(135deg,#EFC88F,#D4A96A);
  transform:translateY(-1px);
  box-shadow:0 10px 30px rgba(212,169,106,.35);
  color:#241B2D !important;
}
.nav-trigger{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--gold-pale);
  border-radius:10px;
  background:var(--surface);
  color:var(--gold);
  font-size:20px;
  align-items:center;justify-content:center;
  cursor:pointer;
  transition:var(--transition);
}
.mobile-panel{
  display:none;
  background:var(--surface);
  border-top:1px solid var(--gold-pale);
  padding:12px 20px 18px;
}
.mobile-panel.open{display:block}
.mobile-panel ul li a{
  display:block;padding:14px 8px;
  border-bottom:1px solid rgba(255,255,255,.04);
  color:var(--text-main);font-size:16px;
}
.mobile-panel ul li.active a{color:var(--gold);font-weight:700}
/* 底部 Tab 移动导航 */
.bottom-tabs{
  display:none;
  position:fixed;bottom:0;left:0;right:0;z-index:999;
  background:rgba(18,14,22,.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-top:1px solid rgba(212,169,106,.12);
  padding:6px 10px calc(6px + env(safe-area-inset-bottom));
  justify-content:space-around;
  box-shadow:0 -6px 24px rgba(0,0,0,.3);
}
.bottom-tab{
  display:flex;flex-direction:column;align-items:center;gap:3px;
  color:var(--text-muted);font-size:10px;
  padding:6px 8px;text-decoration:none;
  border-radius:10px;transition:var(--transition);
}
.bottom-tab i{font-size:18px}
.bottom-tab:hover{color:var(--gold);background:transparent}
.bottom-tab.active{color:var(--gold)}
.bottom-tab.active i{transform:translateY(-1px)}
.bottom-tab.active::before{
  content:'';width:4px;height:4px;
  background:var(--gold);border-radius:50%;
  position:absolute;bottom:4px;
}
/* Hero */
.hero{
  min-height:calc(100vh - 72px);
  display:flex;align-items:center;
  background:linear-gradient(180deg,rgba(16,12,20,.55) 0%,rgba(16,12,20,.35) 50%,rgba(16,12,20,.95) 100%),url('/assets/images/backpic/back-1.webp') right center/cover no-repeat;
  position:relative;
  margin-top:72px;
}
.hero-content{
  padding:clamp(32px,5vw,72px) 0 100px;
  max-width:750px;
}
.hero-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(212,169,106,.12);
  border:1px solid rgba(212,169,106,.25);
  border-radius:40px;
  padding:6px 16px;
  font-size:12px;
  color:var(--gold-light);
  margin-bottom:26px;
  letter-spacing:.06em;
}
.hero-pill::before{
  content:'';width:8px;height:8px;
  border-radius:50%;
  background:var(--coral);
  box-shadow:0 0 10px rgba(226,105,95,.6);
}
.hero h1{
  font-size:clamp(36px,5vw,64px);
  font-weight:900;
  line-height:1.15;
  letter-spacing:.01em;
  color:var(--white);
  margin-bottom:20px;
}
.hero h1 .highlight{
  background:linear-gradient(90deg,#EFC88F,#D4A96A);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-sub{font-size:clamp(15px,1.5vw,18px);color:var(--text-sub);line-height:1.8;margin-bottom:22px;max-width:600px}
.hero-hottags{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}
.hero-hottags a{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 16px;
  background:rgba(26,20,34,.7);
  border:1px solid rgba(212,169,106,.2);
  color:var(--text-sub);
  font-size:12px;
  border-radius:30px;
  transition:var(--transition);
}
.hero-hottags a:hover{border-color:var(--gold);color:var(--gold-light)}
.hero-hottags a i{color:var(--coral);font-size:10px}
.hero-buttons{display:flex;flex-wrap:wrap;gap:16px}
.btn-primary{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 28px;
  min-height:48px;
  background:linear-gradient(135deg,#D4A96A,#EFC88F);
  color:#241B2D;
  border-radius:12px;
  font-weight:700;font-size:15px;
  cursor:pointer;
  box-shadow:0 4px 20px rgba(212,169,106,.3);
  transition:var(--transition);
  border:1px solid rgba(255,232,194,.5);
  white-space:nowrap;
}
.btn-primary:hover{
  color:#241B2D;
  transform:translateY(-2px);
  background:linear-gradient(180deg,#EFC88F,#D4A96A);
  box-shadow:0 8px 32px rgba(212,169,106,.45);
}
.btn-primary:active{transform:translateY(0);box-shadow:0 2px 10px rgba(212,169,106,.25)}
.btn-secondary{
  display:inline-flex;align-items:center;gap:10px;
  padding:13px 24px;
  min-height:48px;
  background:rgba(26,20,34,.45);
  border:1px solid var(--gold-pale);
  color:var(--gold-light);
  border-radius:12px;
  cursor:pointer;
  font-weight:600;font-size:15px;
  transition:var(--transition);
  backdrop-filter:blur(8px);
}
.btn-secondary:hover{
  border-color:var(--gold);
  background:rgba(212,169,106,.12);
  color:var(--gold-light);
  transform:translateY(-2px);
}
/* mini trending */
.mini-trends{
  position:absolute;
  bottom:46px;
  right:clamp(16px,4vw,64px);
  display:flex;
  flex-direction:column;gap:8px;
}
.mini-trend-item{
  display:flex;align-items:center;gap:12px;
  background:rgba(20,16,26,.67);
  backdrop-filter:blur(8px);
  border:1px solid rgba(212,169,106,.1);
  border-radius:12px;
  padding:10px 16px;
  width:300px;
  transition:var(--transition);
}
.mini-trend-item:hover{border-color:rgba(212,169,106,.4);transform:translateX(-4px)}
.mini-trend-number{
  font-size:24px;font-weight:800;
  background:linear-gradient(180deg,#EFC88F,#D4A96A);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
  font-style:italic;
  line-height:1;
}
.mini-trend-meta{display:flex;flex-direction:column;gap:2px}
.mini-trend-meta strong{color:var(--white);font-size:14px;font-weight:600}
.mini-trend-meta span{color:var(--text-muted);font-size:11px}
.mini-trend-live{display:flex;align-items:center;gap:6px;color:var(--coral);font-size:10px;margin-left:auto;flex-shrink:0}
.mini-trend-live i{width:14px;font-size:5px}
/* horizontal slider */
.hslide-wrap{position:relative;margin-top:20px}
.hslide{
  display:flex;
  gap:24px;
  overflow-x:auto;
  padding:16px 4px 24px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.hslide::-webkit-scrollbar{height:4px}
.hslide::-webkit-scrollbar-track{background:rgba(212,169,106,.06);border-radius:4px}
.hslide::-webkit-scrollbar-thumb{background:rgba(212,169,106,.3);border-radius:4px}
.trend-card{
  flex:0 0 auto;
  width:230px;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--surface);
  position:relative;
  scroll-snap-align:start;
  transition:var(--transition);
  cursor:pointer;
  border:1px solid transparent;
}
.trend-card:hover{border-color:var(--gold-pale)}
.trend-card-cover{
  width:100%;height:345px;
  background-size:cover;background-position:center;
  position:relative;
  overflow:hidden;
}
.trend-card-cover img{width:100%;height:100%;object-fit:cover;object-position:center}
.trend-card-cover::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(16,12,20,0) 55%,rgba(16,12,20,.85) 100%);
}
.trend-card-badge{
  position:absolute;top:12px;left:12px;z-index:10;
  background:rgba(226,105,95,.9);
  color:#fff;font-size:10px;
  padding:4px 10px;border-radius:4px;
  letter-spacing:.06em;
  font-weight:700;
}
.trend-card-badge.green{background:rgba(99,167,131,.85)}
.trend-card-info{
  position:absolute;bottom:0;left:0;right:0;z-index:3;
  padding:18px 16px 14px;
}
.trend-card-info h3{color:var(--white);font-size:16px;font-weight:600;margin:0 0 4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.trend-card-info p{color:var(--gold);font-size:12px;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:flex;align-items:center;gap:4px}
.trend-play-btn{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%) scale(.6);
  width:56px;height:56px;border-radius:50%;
  background:rgba(212,169,106,.9);
  z-index:5;
  display:flex;align-items:center;justify-content:center;
  color:#241B2D;font-size:20px;
  opacity:0;transition:var(--transition);
  box-shadow:0 8px 24px rgba(212,169,106,.4);
}
.trend-card:hover .trend-play-btn{opacity:1;transform:translate(-50%,-50%) scale(1)}
.trend-card:hover .trend-card-cover img{transform:scale(1.04)}
.trend-card-cover img{transition:transform .5s ease}
.hslide-fade{
  position:absolute;top:0;right:-1px;bottom:0;width:60px;
  background:linear-gradient(to left,rgba(16,12,20,.9),transparent);
  pointer-events:none;
}
/* heat-rank section */
.section-dark{background:linear-gradient(120deg,rgba(26,20,34,.93) 0%,rgba(16,12,20,.98) 70%);border-top:1px solid var(--gold-pale);border-bottom:1px solid var(--gold-pale)}
.photo-card-main{
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
  cursor:pointer;
  aspect-ratio:21/10;
  border:1px solid var(--gold-pale);
  width:100%;
}
.photo-card-main .back-img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.photo-card-main:hover .back-img{transform:scale(1.05)}
.photo-card-main .photo-overlay{
  position:absolute;inset:0;
  background:linear-gradient(92deg,rgba(16,12,20,.97) 5%,rgba(16,12,20,.55) 55%,rgba(16,12,20,.2) 100%);
  display:flex;flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
  padding:32px;
}
.photo-card-main .tag-label{
  background:rgba(226,105,95,.9);color:#fff;
  font-size:11px;padding:4px 10px;border-radius:4px;
}
.feature-list-vertical{display:flex;flex-direction:column}
.feature-lvlist{display:flex;flex-direction:column}
.feature-item-rt{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 8px;
  background:rgba(26,20,34,.55);
  border:1px solid rgba(255,211,154,.07);
  border-radius:12px;
  transition:var(--transition);
  cursor:pointer;
  margin-bottom:0;
}
.feature-item-rt+.feature-item-rt{margin-top:12px}
.feature-item-rt:hover{background:rgba(26,20,34,.92);border-color:rgba(212,169,106,.35);transform:translateX(5px)}
.rt-rank{
  font-size:34px;font-weight:800;
  background:linear-gradient(180deg,#EFC88F,#7A6E93);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
  font-style:italic;line-height:1;min-width:40px;text-align:center;
}
.feature-item-cx{flex:1}
.feature-item-cx h3{color:var(--white);font-size:15px;font-weight:600;margin-bottom:2px}
.feature-item-cx span{color:var(--text-muted);font-size:12px}
.feature-item-cx span i{color:var(--green);margin-right:5px}
.feature-next-arrow{color:var(--gold);opacity:.5;transition:var(--transition);width:16px;text-align:center}
.feature-item-rt:hover .feature-next-arrow{opacity:1;transform:translateX(3px)}
.icon-badge-per{width:26px;height:26px;border-radius:8px;background:rgba(226,105,95,.15);color:var(--coral);display:flex;align-items:center;justify-content:center;font-size:10px;border:1px solid rgba(226,105,95,.2)}
/* Tab section */
.tabs-nav{display:flex;align-items:center;flex-wrap:wrap;gap:10px;border-bottom:1px solid rgba(255,255,255,.05);padding-bottom:4px;margin:28px 0 10px}
.tab-btn{
  padding:12px 22px;
  font-size:14px;font-weight:500;
  background:transparent;
  border:none;border-radius:10px;
  color:var(--text-sub);
  cursor:pointer;
  transition:var(--transition);
  font-family:inherit;
}
.tab-btn:hover{color:var(--gold-light);background:rgba(212,169,106,.05)}
.tab-btn.active{background:rgba(212,169,106,.14);color:var(--gold-light);font-weight:600;box-shadow:inset 0 -2px 0 var(--gold)}
.tab-more-badge{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:var(--coral);font-size:11px;color:#fff;margin-left:4px;line-height:1}
.tab-pane{display:none;animation:fadeIn .4s ease}
.tab-pane.active{display:block}
.cards-grid-tabs{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(165px,1fr));
  gap:20px;
  margin-top:25px;
}
.card-tab{
  border-radius:14px;overflow:hidden;
  background:var(--surface);
  position:relative;
  transition:var(--transition);
  cursor:pointer;
  border:1px solid transparent;
}
.card-tab:hover{border-color:rgba(212,169,106,.3);transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,.35)}
.card-tab-media{
  aspect-ratio:3/4;
  overflow:hidden;
  background:var(--surface-2);
  position:relative;
}
.card-tab-media img{width:100%;height:100%;object-fit:cover;object-position:center}
.card-tab-body{padding:14px 14px 18px;position:relative}
.card-tab-body h3{font-size:14px;font-weight:600;color:var(--white);margin-bottom:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.card-tab-body p{font-size:12px;color:var(--text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-bottom:0}
.card-tab-corner{
  position:absolute;top:12px;right:12px;z-index:3;
  width:34px;height:34px;border-radius:50%;
  background:rgba(16,12,20,.55);
  backdrop-filter:blur(6px);
  border:1px solid rgba(212,169,106,.3);
  color:var(--gold-light);
  font-size:13px;
  display:flex;align-items:center;justify-content:center;
  opacity:0;
  transition:var(--transition);
}
.card-tab:hover .card-tab-corner{opacity:1;transform:scale(1)}
/* dual showcase wall */
.dual-showcase-c{ display: flex; align-items:center; gap:36px; }
.tv-img-wrap{position:relative;width:100%;height:100%;min-height:340px;border-radius:18px;overflow:hidden;border:1px solid rgba(255,211,154,.1)}
.tv-img-wrap img{width:100%;height:100%;object-fit:cover}
.tv-overlay-bottom{
  position:absolute;left:20px;right:20px;bottom:20px;
  background:rgba(16,12,20,.72);
  backdrop-filter:blur(10px);
  padding:12px 18px;
  border-radius:12px;
  border-left:2px solid var(--gold);
  font-size:13px;
  color:var(--text-main);
  line-height:1.7;
}
.epoch-list-d{list-style:none;margin:0}
.epoch-list-d li{
  display:flex;align-items:flex-start;gap:18px;
  padding:18px 4px;
  border-bottom:1px solid rgba(255,255,255,.05);
  transition:var(--transition);
  cursor:pointer;
}
.epoch-list-d li:last-child{border-bottom:none}
.epoch-list-d li:hover{background:rgba(212,169,106,.03)}
.epoch-leaf-num{
  font-size:15px;font-weight:800;color:var(--gold);
  background:rgba(212,169,106,.1);
  min-width:36px;height:28px;
  border-radius:6px;
  display:flex;align-items:center;justify-content:center;
  line-height:1;
}
.epoch-content{
  flex:1;
}
.epoch-content h3{font-size:16px;color:var(--white);font-weight:600;line-height:1.5;margin-bottom:4px}
.epoch-content p{font-size:13px;color:var(--text-sub);line-height:1.7;margin-bottom:0}
.epoch-tag-enter{font-size:12px;color:var(--gold);white-space:nowrap;align-self:center;margin-left:auto}
/* content list (CMS) */
.cms-list-wrap{margin-top:28px;display:flex;flex-direction:column}
.article-card{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 6px;
  border-bottom:1px solid rgba(255,255,255,.05);
  transition:var(--transition);
}
.article-card:hover{background:rgba(212,169,106,.04);padding-left:15px;padding-right:6px}
.article-card-thumb{
  flex-shrink:0;
  width:80px;height:60px;border-radius:8px;
  background-size:cover;background-position:center;
  position:relative;
  display:flex;align-items:center;justify-content:center;
  color:var(--white);font-size:20px;
}
.article-card-thumb::before{
  content:'';position:absolute;inset:0;
  background:rgba(16,12,20,.5);
  border-radius:8px;
}
.article-card-thumb i{position:relative;z-index:2;color:var(--gold)}
.article-card-body{flex:1;min-width:0}
.article-card-body h3{margin:0 0 6px;font-size:16px;line-height:1.5}
.article-card-body h3 a{color:var(--text-main);font-weight:600}
.article-card-body h3 a:hover{color:var(--gold)}
.article-excerpt{
  font-size:13px;color:var(--text-sub);margin:0 0 8px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  overflow:hidden;
  line-height:1.7;
}
.article-meta{display:flex;align-items:center;gap:12px;font-size:12px;color:var(--text-muted)}
.article-meta .meta-cat{color:var(--gold);background:rgba(212,169,106,.1);padding:2px 10px;border-radius:4px}
.article-card-time{align-self:center;white-space:nowrap}
.article-empty-state{
   text-align:center;padding:68px 20px;color:var(--text-muted);
}
.article-empty-state i{font-size:44px;color:var(--surface-2);display:block;margin-bottom:16px;opacity:.6}
.article-empty-state p{font-size:15px}
.overview-stats{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:20px;
  margin-top:24px;
}
.mergepic-hero-mini{
  background-size:cover;
  background-position:center;
  position:relative;
}
.mergepic-hero-mini .darken-mini{
  background:linear-gradient(90deg,rgba(16,12,20,.85) 10%,rgba(16,12,20,.3));
  padding:42px 36px;
  border-radius:14px;
}
/* CTA Band */
.cta-band-main{
  position:relative;
  background:url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
  overflow:hidden;
  border-radius:24px;
}
.cta-band-main::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(16,12,20,.95) 15%,rgba(16,12,20,.65) 60%,rgba(16,12,20,.5) 100%);
}
.cta-band-content{position:relative;z-index:2;padding:64px 48px;text-align:center;max-width:620px;margin:0 auto}
.cta-band-content h2{font-size:clamp(24px,3vw,36px);font-weight:800;color:#fff;margin-bottom:14px;line-height:1.4}
.cta-band-content p{color:rgba(245,239,230,.8);font-size:14px;line-height:1.9}
/* FAQ */
.acc{
  background:var(--surface);
  border-radius:14px;
  border:1px solid rgba(255,211,154,.08);
  margin-bottom:12px;
  overflow:hidden;
  transition:var(--transition);
}
.acc:hover{border-color:rgba(255,211,154,.22)}
.acc-btn{
  width:100%;
  background:transparent;
  border:none;
  padding:16px 24px;
  display:flex;align-items:center;justify-content:space-between;
  cursor:pointer;
  color:var(--text-main);
  font-size:15px;
  font-weight:500;
  font-family:inherit;
  text-align:left;
  transition:var(--transition);
}
.acc-btn:hover{color:var(--gold-light)}
.acc-btn .icon-plux{position:relative;flex-shrink:0;border:1px solid rgba(212,169,106,.3);border-radius:50%;width:28px;height:28px;margin-left:20px;transition:var(--transition)}
.acc-btn .icon-plux i{color:var(--gold);font-size:13px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}
.acc.active .acc-btn{color:var(--gold)}
.acc.active .icon-plux{transform:rotate(45deg);border-color:var(--gold);background:rgba(212,169,106,.1)}
.acc-panel{display:none;padding:0 24px 20px;font-size:14px;line-height:1.8;color:rgba(175,164,184,.95)} 
.acc-panel.open{display:block;animation:fadeIn .45s ease-in-out}
/* footer */
.site-footer{
  background:#0B080F;
  border-top:1px solid var(--gold-pale);
  padding:70px 0 120px; 
}
.footer-top{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:40px;margin-bottom:48px}
.footer-brand-col{max-width:360px}
.footer-brand-col .logo-text{font-size:20px;margin-bottom:14px;display:block}
.footer-brand-col p{color:rgba(175,164,184,.6);font-size:13px;margin:0;line-height:2}
.footer-links-wrap{display:flex;gap:56px;flex-wrap:wrap}
.footer-links-group{display:flex;flex-direction:column;gap:12px}
.footer-links-group h4{color:var(--text-main);font-size:14px;letter-spacing:.06em;margin-bottom:8px;font-weight:600}
.footer-links-group a{color:rgba(175,164,184,.55);font-size:13px;transition:var(--transition);padding:2px 0}
.footer-links-group a:hover{color:var(--gold)}
.footer-bottom{
  border-top:1px solid rgba(212,169,106,.08);
  padding-top:28px;
  display:flex;justify-content:space-between;align-items:center;
  color:rgba(175,164,184,.4);
  font-size:12px;flex-wrap:wrap;gap:12px;
}
.footer-bottom .seo-meta-text{font-size:12px}
/* 通用fade */
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
/* responsive */
.grid-x{row-gap:36px;}
@media screen and (max-width: 900px){
  .mini-trends{position:static; margin-top:30px; align-items:flex-start; }
  .hero-content{padding-bottom:60px}
  .dual-showcase-c{flex-direction:column}
  .footer-links-wrap{width:100%;justify-content:space-between}
}
@media screen and (max-width: 767px){
  .header-inner{height:60px}
  .nav-desktop,.header-actions .cta-btn-header{display:none}
  .nav-trigger{display:flex}
  .hero{margin-top:60px}
  .site-header{background:rgba(16,12,20,.96)}
  .cta-band-content{padding:48px 20px}
  .footer-links-wrap{display:grid;grid-template-columns:1fr 1fr;gap:24px 20px;width:100%}
  .bottom-tabs{display:flex}
  .site-footer{padding-bottom:120px}
  .trend-card{width:180px}
  .trend-card-cover{height:300px}
  .hero h1{
    font-size:36px;
    line-height:1.3;
  }
  .feature-item-rt{flex-wrap:wrap;position:relative}
  .feature-next-arrow{position:absolute;top:18px;right:14px}
  .feature-item-rt{padding-right:38px}
}
@media screen and (max-width:560px){
  .section{padding:56px 0}
  .hero{min-height:fit-content}
  .feature-item-rt{flex-direction:row;flex-wrap:wrap;align-content:flex-start;gap:8px 12px}
  .feature-item-cx{flex:0 0 calc(100% - 70px)}
  .feature-item-cx h3{font-size:14px}
  .photo-card-main .photo-overlay{padding:20px}
  .bottom-tabs{display:flex}
  .header-cta-mobile-wrap{margin:8px 16px 8px}
  .mobile-panel .nav-cta{width:100%;justify-content:center;margin-top:8px}
  .article-card{align-items:flex-start}
  .article-card-time{display:none}
  .card-tab-media{aspect-ratio:2/3}
}

/* roulang page: article */
:root {
  --bg: #100C14;
  --surface: #1A1422;
  --surface-2: #241B2D;
  --gold: #D4A96A;
  --gold-high: #EFC88F;
  --coral: #E2695F;
  --green: #63A783;
  --text: #F5EFE6;
  --muted: #AFA4B8;
  --white: #FFFFFF;
  --border: rgba(255, 211, 154, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px rgba(0,0,0,0.28);
  --font-sans: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

a:hover,
a:focus {
  color: var(--gold-high);
}

h1, h2, h3, h4 {
  margin: 0 0 .55em;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}

p {
  margin: 0 0 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.grid-container {
  padding-left: 24px;
  padding-right: 24px;
}

.cell {
  margin-bottom: 24px;
}

.grid-x>.cell {
  padding-left: 0;
  padding-right: 0;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(16, 12, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 25px;
  color: var(--white);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #D4A96A, #EFC88F);
  color: #301E12;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(212,169,106,.22);
}

.site-logo .logo-text {
  letter-spacing: .02em;
}

.site-logo:hover,
.site-logo:focus {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 2px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.nav-desktop li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-high));
  transition: width .3s ease;
}

.nav-desktop li a:hover::after,
.nav-desktop li.active a::after {
  width: 100%;
}

.nav-desktop li a:hover {
  color: var(--text);
}

.nav-desktop li.active a {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: linear-gradient(135deg, #D4A96A, #DDAF76, #EFC88F);
  color: #2B2014 !important;
  font-weight: 700;
  font-size: 15px;
  height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(212,169,106,.26);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.nav-cta:hover,
.nav-cta:focus {
  filter: brightness(1.08);
  color: #2B2014 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(212,169,106,.32);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(212,169,106,.16);
}

.nav-trigger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  background: rgba(18, 14, 22, 0.98);
  border-top: 1px solid var(--border);
  padding: 18px 20px 26px;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.mobile-panel ul li a {
  display: flex;
  align-items: center;
  padding: 14px 6px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 16px;
}

.mobile-panel ul li.active a {
  color: var(--gold-high);
  font-weight: 700;
}

.nav-cta-mobile-wrap {
  margin-top: 8px;
}

.article-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 56px;
  background-image: linear-gradient(180deg, rgba(16,12,20,.45) 0%, rgba(16,12,20,.72) 68%, var(--bg) 100%), url('/assets/images/backpic/back-3.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.article-banner .container {
  position: relative;
  z-index: 2;
}

.article-banner-inner {
  max-width: 960px;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.crumb a {
  color: var(--gold);
}

.crumb span {
  color: rgba(255,255,255,.46);
}

.article-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #261A0F;
  background: linear-gradient(120deg, #D4A96A, #EFC88F);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
  letter-spacing: .06em;
}

.article-banner h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: .01em;
  max-width: 920px;
  text-wrap: balance;
  text-shadow: 0 4px 20px rgba(0,0,0,.28);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-meta i {
  color: var(--gold);
  font-size: 15px;
}

.article-meta .source-highlight {
  color: var(--gold-high);
}

.article-main {
  padding: 0 0 90px;
  background: var(--bg);
}

.article-shell {
  max-width: 860px;
  margin: 0 auto;
}

.article-paper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 64px);
  margin-top: -28px;
  position: relative;
  z-index: 3;
}

.article-paper:empty {
  min-height: 200px;
}

.no-content-panel {
  text-align: center;
  padding: 44px 0 30px;
}

.no-content-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 18px;
}

.no-content-panel p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all .25s ease;
}

.btn-gold {
  background: linear-gradient(135deg, #D4A96A, #EFC88F);
  color: #2B2014;
  box-shadow: 0 8px 24px rgba(212,169,106,.22);
}

.btn-gold:hover {
  color: #2B2014;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212,169,106,.32);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-high);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(212,169,106,.12);
  color: var(--white);
}

.article-body {
  color: rgba(245,239,230,.94);
  font-size: 16px;
  line-height: 1.9;
}

.article-body p {
  margin-bottom: 26px;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin-top: 34px;
  margin-bottom: 16px;
  color: var(--white);
}

.article-body h2 {
  font-size: 28px;
}

.article-body h3 {
  font-size: 19px;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: rgba(212,169,106,.09);
  color: var(--text);
}

.article-body ul,
.article-body ol {
  margin: 0 0 28px;
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: 14px;
  overflow: hidden;
}

.article-body table th {
  background: var(--surface-2);
  color: var(--white);
  text-align: left;
  padding: 12px 16px;
}

.article-body table td {
  border: 1px solid rgba(255,255,255,.07);
  padding: 12px 16px;
  color: var(--muted);
}

.article-body img {
  border-radius: 14px;
  margin: 28px 0 12px;
}

.article-body figure {
  margin: 28px 0;
}

.article-body figcaption {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.article-body a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-note {
  margin-top: 34px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(99,167,131,.08);
  border: 1px solid rgba(99,167,131,.22);
  color: var(--muted);
  font-size: 14px;
}

.article-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.tag-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 13px;
  transition: all .25s ease;
}

.tag-btn:hover {
  border-color: var(--gold);
  color: var(--gold-high);
  background: rgba(212,169,106,.08);
}

.tag-btn .hot-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.article-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.pager-card {
  position: relative;
  display: block;
  padding: 20px 22px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all .25s ease;
  min-height: 92px;
}

.pager-card:hover {
  border-color: rgba(255,211,154,.38);
  background: var(--surface-2);
  transform: translateY(-3px);
}

.pager-card span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 8px;
}

.pager-card strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.pager-prev {
  text-align: left;
}

.pager-next {
  text-align: right;
}

.pager-next span {
  flex-direction: row-reverse;
}

.category-section {
  padding: 70px 0 90px;
  background: var(--bg);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.section-head .overline {
  display: block;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--gold);
  font-weight: 600;
}

.text-link:hover {
  color: var(--gold-high);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all .3s ease;
  min-height: 300px;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,211,154,.34);
  box-shadow: 0 20px 42px rgba(0,0,0,.32);
}

.gallery-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1A1422;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-card:hover .gallery-media img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(16,12,20,.88));
  z-index: 1;
}

.gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 12px;
  font-weight: 800;
  color: #2A1A0A;
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: .04em;
}

.play-hit {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,169,106,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #281B0D;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease;
  cursor: pointer;
  z-index: 2;
}

.gallery-card:hover .play-hit {
  opacity: 1;
  transform: translateY(0);
}

.gallery-body {
  padding: 16px 18px 20px;
}

.gallery-body h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.gallery-body p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

.article-cta-strip {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(212,169,106,.08), transparent 70%), url('/assets/images/backpic/back-2.png') center / cover no-repeat;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.article-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,12,20,.94), rgba(16,12,20,.68));
}

.article-cta-strip .container {
  position: relative;
  z-index: 1;
}

.cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 30px;
}

.site-footer {
  background: #0C080F;
  border-top: 1px solid rgba(255,211,154,.12);
  padding: 62px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 44px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand-col p {
  color: var(--muted);
  max-width: 320px;
  margin-top: 18px;
  font-size: 15px;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-links-group h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-links-group a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links-group a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 26px;
  padding-top: 24px;
  color: #7C7185;
  font-size: 13px;
  text-align: center;
}

.footer-bottom .seo-meta-text {
  display: inline-block;
  color: #6E6379;
}

/* focus state */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 6px;
}

/* responsive */
@media screen and (max-width: 1023px) {
  .nav-desktop {
    gap: 22px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 762px) {
  body {
    font-size: 15px;
  }

  .header-inner {
    height: 62px;
    padding: 0 16px;
    gap: 12px;
  }

  .site-logo .logo-text {
    font-size: 18px;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .nav-desktop,
  .header-actions {
    display: none;
  }

  .nav-trigger {
    display: inline-flex;
  }

  .article-banner {
    min-height: 360px;
  }

  .article-paper {
    padding: 22px 18px 30px;
    margin-top: -14px;
    border-radius: 18px;
  }

  .article-pager {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-body h3 {
    font-size: 16px;
  }

  .gallery-card {
    min-height: 230px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media screen and (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-media {
    aspect-ratio: 16/10;
  }

  .mobile-panel {
    padding: 10px 16px 20px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
  }
}

/* roulang page: category1 */
:root {
  --bg: #100C14;
  --surface: #1A1422;
  --surface-2: #241B2D;
  --white: #FFFFFF;
  --cream: #F5EFE6;
  --ink-soft: #AFA4B8;
  --ink-mute: #817591;
  --gold: #D4A96A;
  --gold-light: #EFC88F;
  --coral: #E2695F;
  --green: #63A783;
  --line: rgba(255, 211, 154, 0.14);
  --line-strong: rgba(255, 211, 154, 0.28);
  --radius-m: 12px;
  --radius-l: 18px;
  --radius-xl: 26px;
  --shadow: 0 14px 34px rgba(0,0,0,0.22);
  --shadow-deep: 0 22px 48px rgba(0,0,0,0.3);
  --gold-grad: linear-gradient(135deg, #C79A5B 0%, #EFC88F 52%, #B88948 100%);
  --container: 1200px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 16% -8%, rgba(212, 169, 106, 0.1), transparent 420px), radial-gradient(circle at 88% 28%, rgba(226, 105, 95, 0.07), transparent 330px);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

a:hover {
  color: #fff;
}

em,
i,
address {
  font-style: normal;
}

button,
input {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 8px;
}

ul,
ol,
p,
h1,
h2,
h3,
h4,
figure {
  margin-top: 0;
}

.container,
.grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-fluid {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(16, 12, 20, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1340px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #241709;
  font-size: 17px;
  background: var(--gold-grad);
  box-shadow: 0 0 22px rgba(212, 169, 106, 0.28);
}

.logo-text {
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-desktop,
.nav-desktop ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-desktop a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 20px 0 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-light), rgba(239, 200, 143, 0.1));
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .25s ease, transform .25s ease;
}

.nav-desktop a:hover,
.nav-desktop li.active a {
  color: #fff;
}

.nav-desktop li.active a::after,
.nav-desktop a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 4px;
}

.nav-cta {
  height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-grad);
  color: #241709;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(212, 169, 106, 0.22);
}

.nav-cta:hover {
  color: #1a1207;
  background: linear-gradient(135deg, #DDAF78 0%, #F6D29D 48%, #CDA15F 100%);
  transform: translateY(-1px);
}

.nav-trigger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(26, 20, 34, 0.8);
  color: var(--cream);
  font-size: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-trigger:hover {
  border-color: var(--line-strong);
  color: var(--gold-light);
}

.mobile-panel {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  z-index: 119;
  padding: 18px 22px 22px;
  background: rgba(16, 12, 20, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 40px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-panel.open {
  display: block;
  animation: panelFade .22s ease;
}

@keyframes panelFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 4px;
}

.mobile-panel ul a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 12px;
  border-radius: 12px;
  color: var(--cream);
  font-weight: 600;
}

.mobile-panel ul li.active a,
.mobile-panel ul a:hover {
  color: var(--gold-light);
  background: rgba(212, 169, 106, 0.08);
}

.header-cta-mobile-wrap {
  display: flex;
  justify-content: center;
}

.section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(27px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.eyebrow,
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--gold);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "—";
  color: var(--coral);
}

.section-intro {
  color: var(--ink-soft);
  max-width: 640px;
  margin: 12px 0 0;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(239, 200, 143, 0.35);
  padding-bottom: 4px;
}

.link-more:hover {
  border-color: #fff;
  color: #fff;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 48px;
  padding: 0 24px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s ease;
}

.btn-primary {
  background: var(--gold-grad);
  color: #241709;
  border: 1px solid rgba(255, 222, 172, 0.4);
  box-shadow: 0 10px 28px rgba(212, 169, 106, 0.18);
}

.btn-primary:hover {
  color: #1b1307;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(212, 169, 106, 0.3);
}

.btn-ghost {
  background: rgba(212, 169, 106, 0.05);
  border: 1px solid rgba(255, 211, 154, 0.36);
  color: var(--gold-light);
}

.btn-ghost:hover {
  background: rgba(212, 169, 106, 0.13);
  border-color: rgba(255, 220, 174, 0.55);
  color: #fff;
  transform: translateY(-1px);
}

.cat-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 92px 0 70px;
  background:
    radial-gradient(circle at 78% 34%, rgba(212, 169, 106, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(16,12,20,0.98) 16%, rgba(16,12,20,0.82) 54%, rgba(16,12,20,0.42) 100%),
    url('/assets/images/backpic/back-2.png') center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.cat-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.breadcrumbs a {
  color: var(--ink-soft);
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.breadcrumbs span.row-sep {
  color: var(--ink-mute);
}

.breadcrumbs .is-current {
  color: var(--gold-light);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 690px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(212, 169, 106, 0.08);
  border: 1px solid rgba(212, 169, 106, 0.18);
  padding: 6px 12px;
  border-radius: 30px;
}

.cat-hero h1 {
  color: var(--white);
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1.05;
  font-weight: 900;
  margin: 18px 0 14px;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

.hero-lead {
  font-size: 17px;
  line-height: 1.9;
  color: #C9BECF;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
}

.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 169, 106, 0.9);
}

.hero-aside {
  background: rgba(23, 17, 29, 0.86);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-deep);
}

.hero-mini-card {
  min-width: 0;
}

.mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.mini-head span {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 211, 154, 0.1);
  color: var(--cream);
}

.mini-row:first-of-type {
  border-top: 0;
}

.mini-row:hover {
  color: var(--gold-light);
}

.mini-row b {
  flex: 1;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-row em {
  color: var(--ink-soft);
  font-size: 12px;
}

.mini-row i {
  color: var(--gold);
  font-size: 12px;
}

.mini-rank {
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
  width: 32px;
}

.rail-block {
  padding-top: 70px;
  overflow: hidden;
}

.rail-block .section-head {
  margin-bottom: 22px;
}

.rail-wrap {
  width: 100%;
  overflow-x: auto;
  padding: 4px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,169,106,.4) transparent;
}

.rail-wrap::-webkit-scrollbar {
  height: 7px;
}

.rail-wrap::-webkit-scrollbar-thumb {
  background: rgba(212, 169, 106, 0.4);
  border-radius: 8px;
}

.rail-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.rail-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
}

.poster-card {
  width: 202px;
  flex-shrink: 0;
}

.poster-card .poster-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid rgba(255, 211, 154, 0.1);
}

.poster-card .poster-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.poster-card:hover .poster-media img {
  transform: scale(1.07);
}

.poster-card .poster-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,12,20,0.72) 100%);
}

.poster-card .poster-media:hover {
  border-color: var(--line-strong);
}

.poster-media .play-glyph {
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%) translateY(12px);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #241709;
  font-size: 14px;
  z-index: 3;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 6px 22px rgba(0,0,0,.4);
}

.poster-card:hover .play-glyph {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 7px;
  background: rgba(16,12,20,.72);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.14);
}

.badge.hot {
  color: #fff4e4;
  background: rgba(226, 105, 95, 0.24);
  border-color: rgba(226, 105, 95, 0.45);
}

.badge.new {
  color: #E9FFDF;
  background: rgba(99, 167, 131, 0.24);
  border-color: rgba(99, 167, 131, 0.4);
}

.poster-info {
  padding-top: 12px;
}

.poster-info h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.poster-info p,
.poster-info .muted-line {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.rank-section {
  background: linear-gradient(180deg, rgba(20,15,25,0) 0%, rgba(26,20,34,.6) 100%);
}

.rank-media {
  position: relative;
  display: block;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.rank-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.rank-media:hover img {
  transform: scale(1.05);
}

.rank-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(16,12,20,.05) 40%, rgba(16,12,20,.82) 100%);
}

.rank-media-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 3;
}

.rank-media-caption .tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(226, 105, 95, 0.24);
  border: 1px solid rgba(226, 105, 95, 0.4);
  color: #fff4e4;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
  padding: 4px 11px;
  margin-bottom: 12px;
}

.rank-media h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
}

.rank-media p {
  color: rgba(245,239,230,.78);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.rank-panel {
  background: rgba(26,20,34,.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 7px 22px;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(255, 211, 154, 0.1);
}

.rank-item:last-child {
  border-bottom: 0;
}

.rank-item:hover .rank-item-text strong {
  color: #fff;
}

.rank-item-text {
  flex: 1;
  min-width: 0;
}

.rank-item-text strong {
  display: block;
  color: var(--cream);
  font-size: 16px;
  font-weight: 700;
  transition: color .2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-item-text em {
  color: var(--ink-soft);
  font-size: 13px;
}

.meter {
  display: block;
  height: 4px;
  border-radius: 8px;
  margin-top: 9px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.meter i {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: var(--gold-grad);
}

.rank-star {
  color: var(--coral);
  font-size: 13px;
}

.rank-arrow {
  color: var(--gold);
  font-size: 14px;
}

.route-section {
  position: relative;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 20px;
}

.route-step {
  position: relative;
  display: block;
  padding: 30px 28px 28px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line);
  min-height: 245px;
  overflow: hidden;
}

.route-step::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,169,106,.24) 0%, rgba(212,169,106,0) 70%);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.route-step:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.route-step:hover::after {
  opacity: 1;
}

.route-step .step-num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  color: #241709;
  background: var(--gold-grad);
  margin-bottom: 22px;
}

.route-step h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
}

.route-step p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.schedule-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 26px;
  height: 100%;
  box-shadow: var(--shadow);
}

.schedule-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.schedule-date {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(212,169,106,.1);
  border: 1px solid rgba(212,169,106,.2);
  padding: 6px 12px;
  border-radius: 30px;
}

.schedule-card h3 {
  margin: 16px 0 14px;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.45;
}

.schedule-card p {
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 0 0 20px;
}

.schedule-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--gold-light);
  background: rgba(212, 169, 106, 0.12);
  font-size: 22px;
}

.update-list {
  display: grid;
  gap: 13px;
}

.update-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--cream);
}

.update-row:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
  transform: translateX(4px);
}

.update-row .date-tag {
  flex-shrink: 0;
  background: rgba(212, 169, 106, 0.1);
  color: var(--gold-light);
  font-size: 12px;
  border-radius: 8px;
  padding: 5px 9px;
  font-weight: 700;
}

.update-row strong {
  flex: 1;
  display: block;
  color: var(--cream);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.update-row em {
  font-size: 13px;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.faq-section {
  background: rgba(20,15,25,.7);
}

.faq-list {
  max-width: 850px;
  margin: 20px auto 0;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  transition: border-color .22s ease;
}

.faq-item.open {
  border-color: rgba(239, 200, 143, 0.32);
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  border-radius: 14px;
}

.faq-q i {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease, padding .3s ease;
  padding: 0 24px;
}

.faq-a p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
  border-left: 2px solid rgba(212,169,106,.5);
  padding-left: 16px;
  margin: 0 0 20px;
}

.faq-item.open .faq-a {
  max-height: 420px;
  padding-top: 2px;
  padding-bottom: 0;
}

.cta-band {
  position: relative;
  padding: 108px 0;
  overflow: hidden;
  background:
    linear-gradient(93deg, rgba(16,12,20,.94) 8%, rgba(16,12,20,.78) 55%, rgba(16,12,20,.6) 100%),
    url('/assets/images/backpic/back-3.webp') center / cover no-repeat;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.cta-inner .eyebrow {
  color: var(--gold-light);
}

.cta-inner h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.3;
  color: #fff;
  margin: 20px 0 16px;
}

.cta-inner p {
  color: #C9BECF;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 28px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.site-footer {
  background: #0C0A10;
  border-top: 1px solid rgba(255, 211, 154, 0.1);
  padding: 68px 0 26px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 38px;
}

.footer-brand-col .logo-text {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
}

.footer-brand-col p {
  color: var(--ink-soft);
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.9;
  max-width: 380px;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.footer-links-group h4 {
  color: var(--white);
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
}

.footer-links-group a {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-links-group a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  color: var(--ink-soft);
  font-size: 13px;
}

.seo-meta-text {
  color: var(--ink-soft);
}

@media screen and (max-width: 1024px) {
  .site-header {
    height: 64px;
  }

  .header-inner {
    height: 64px;
    padding: 0 18px;
    --header-h: 64px;
  }

  .nav-desktop,
  .header-actions {
    display: none;
  }

  .nav-trigger {
    display: inline-flex;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-aside {
    max-width: 500px;
  }

  .section {
    padding: 72px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media screen and (max-width: 824px) {
  .route-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-card {
    padding: 22px;
  }
}

@media screen and (max-width: 639px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 60px 0;
  }

  .container,
  .grid-container,
  .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header,
  .header-inner {
    height: 60px;
  }

  .header-inner {
    padding: 0 14px;
  }

  .mobile-panel {
    top: 60px;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
    border-radius: 9px;
  }

  .logo-text {
    font-size: 16px;
  }

  .cat-hero {
    min-height: 460px;
    padding: 78px 0 52px;
  }

  .cat-hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-proof {
    gap: 16px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .poster-card {
    width: 154px;
  }

  .poster-card .play-glyph {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .poster-info h3 {
    font-size: 15px;
  }

  .rank-media {
    min-height: 270px;
  }

  .rank-panel {
    padding: 4px 14px;
  }

  .rank-item {
    padding: 13px 2px;
  }

  .rank-item-text strong {
    font-size: 14px;
  }

  .rank-item-text em {
    font-size: 12px;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .route-step {
    padding: 24px 22px;
  }

  .schedule-card {
    padding: 20px 18px;
  }

  .schedule-card h3 {
    font-size: 20px;
  }

  .update-row {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 12px 13px;
  }

  .update-row .date-tag {
    width: 100%;
  }

  .update-row strong {
    flex: 1 0 calc(100% - 20px);
    white-space: normal;
    color: var(--cream);
  }

  .update-row em {
    font-size: 12px;
  }

  .faq-q {
    padding: 17px 15px;
    font-size: 14px;
  }

  .faq-a {
    padding: 0 20px;
  }

  .faq-item.open .faq-a {
    padding-bottom: 0;
  }

  .cta-band {
    padding: 82px 0;
  }

  .cta-inner h2 {
    font-size: 28px;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-ghost {
    width: 100%;
  }

  .footer-top {
    gap: 30px;
    padding-bottom: 26px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* roulang page: category2 */
:root{
      --bg:#100C14;
      --bg-soft:#17111D;
      --bg-deep:#0A0710;
      --card:#1A1422;
      --card-2:#1E1726;
      --card-hover:#241B2D;
      --line:rgba(255,211,154,.14);
      --line-bright:rgba(255,211,154,.36);
      --text:#F5EFE6;
      --muted:#AFA4B8;
      --gold:#D4A96A;
      --gold-bright:#EFC88F;
      --gold-deep:#A97E45;
      --coral:#E2695F;
      --green:#63A783;
      --purple:#7A6E93;
      --white:#FFFFFF;
      --shadow-sm:0 8px 20px rgba(0,0,0,.20);
      --shadow-md:0 18px 44px rgba(0,0,0,.30);
      --radius-lg:18px;
      --radius-md:14px;
      --radius-sm:8px;
      --font:-apple-system,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
    }
    *,
    *::before,
    *::after{
      box-sizing:border-box;
    }
    html{
      scroll-behavior:smooth;
    }
    body{
      margin:0;
      font-family:var(--font);
      background:var(--bg);
      color:var(--text);
      line-height:1.8;
      font-size:16px;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    ul,ol{
      margin:0;
      padding:0;
      list-style:none;
    }
    h1,h2,h3,h4,h5,h6,p{
      margin:0;
    }
    img{
      max-width:100%;
      display:block;
    }
    a,button,input,textarea{
      font-family:inherit;
    }
    a{
      color:var(--gold);
      text-decoration:none;
      transition:color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    a:hover{
      color:var(--gold-bright);
    }
    button{
      cursor:pointer;
      border:none;
      background:none;
      color:inherit;
      padding:0;
    }
    a:focus-visible,
    button:focus-visible{
      outline:2px solid var(--gold-bright);
      outline-offset:3px;
      border-radius:6px;
    }
    .grid-container{
      max-width:1230px;
      padding-left:24px;
      padding-right:24px;
    }
    .section-pad{
      padding:96px 0;
    }
    .section-pad-sm{
      padding:74px 0;
    }

    /* ===== Header ===== */
    .site-header{
      position:sticky;
      top:0;
      left:0;
      width:100%;
      z-index:60;
      background:rgba(16,12,20,.93);
      border-bottom:1px solid rgba(255,211,154,.13);
      backdrop-filter:blur(6px);
    }
    .header-inner{
      max-width:1280px;
      margin:0 auto;
      height:72px;
      padding:0 28px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .site-logo{
      display:inline-flex;
      align-items:center;
      gap:10px;
      flex-shrink:0;
    }
    .logo-icon{
      width:36px;
      height:36px;
      border-radius:10px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,#D4A96A,#8F6437);
      color:#1A1422;
      font-size:17px;
    }
    .logo-text{
      font-size:20px;
      font-weight:800;
      color:#F5EFE6;
      letter-spacing:.01em;
      white-space:nowrap;
    }
    .nav-desktop{
      display:flex;
      gap:4px;
      align-items:center;
    }
    .nav-desktop li a{
      display:inline-block;
      padding:9px 16px;
      color:var(--muted);
      border-radius:10px;
      font-weight:500;
      font-size:15px;
    }
    .nav-desktop li a:hover{
      color:var(--white);
      background:rgba(255,211,154,.08);
    }
    .nav-desktop li.active a{
      color:var(--white);
      background:rgba(255,211,154,.10);
      box-shadow:inset 0 -2px 0 var(--gold);
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .nav-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      height:42px;
      padding:0 18px;
      border-radius:99px;
      font-weight:600;
      font-size:14px;
      color:#261D16;
      background:linear-gradient(135deg,#C99858,#EFC88F 60%,#D9AF72);
      box-shadow:0 8px 18px rgba(180,140,75,.20);
      transition:all .25s ease;
    }
    .nav-cta:hover{
      color:#1A1422;
      transform:translateY(-1px);
      filter:brightness(1.08);
    }
    .nav-trigger{
      display:none;
      width:42px;
      height:42px;
      border-radius:10px;
      color:#F5EFE6;
      font-size:20px;
      align-items:center;
      justify-content:center;
      background:rgba(255,211,154,.06);
      border:1px solid rgba(255,211,154,.12);
    }
    .mobile-panel{
      display:none;
      max-height:0;
      overflow:hidden;
      background:#0D0912;
      border-top:1px solid rgba(255,211,154,.10);
      transition:max-height .35s ease;
    }
    .mobile-panel.is-open{
      display:block;
      max-height:560px;
    }
    .mobile-panel ul{
      padding:18px 20px 6px;
    }
    .mobile-panel ul li a{
      display:flex;
      align-items:center;
      gap:8px;
      padding:13px 12px;
      border-radius:10px;
      color:var(--muted);
      font-weight:600;
    }
    .mobile-panel ul li.active a,
    .mobile-panel ul li a:hover{
      color:var(--white);
      background:rgba(255,211,154,.08);
    }
    .header-cta-mobile-wrap{
      padding:14px 20px 20px;
    }

    /* ===== Buttons ===== */
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:46px;
      padding:0 28px;
      border-radius:10px;
      font-weight:600;
      font-size:15px;
      line-height:1;
      border:1px solid transparent;
      transition:all .25s ease;
    }
    .btn-primary{
      background:linear-gradient(135deg,#B58A4F,#E7C586 58%,#D4A96A);
      color:#241B2D;
      box-shadow:0 10px 24px rgba(180,130,70,.22);
    }
    .btn-primary:hover{
      filter:brightness(1.08);
      color:#241B2D;
      transform:translateY(-2px);
    }
    .btn-primary i{
      font-size:14px;
    }
    .btn-outline{
      background:rgba(255,211,154,.04);
      border:1px solid rgba(212,169,106,.60);
      color:#EFC88F;
    }
    .btn-outline:hover{
      border-color:rgba(239,200,143,.95);
      background:rgba(255,211,154,.12);
      color:#fff;
      transform:translateY(-2px);
    }
    .btn-ghost{
      background:transparent;
      border:1px solid var(--line);
      color:var(--muted);
    }
    .btn-ghost:hover{
      color:var(--gold-bright);
      border-color:var(--line-bright);
      background:rgba(212,169,106,.06);
    }

    /* ===== Breadcrumb ===== */
    .breadcrumb{
      display:flex;
      align-items:center;
      gap:8px;
      color:#AFA4B8;
      font-size:13px;
      margin-bottom:18px;
      flex-wrap:wrap;
    }
    .breadcrumb a{
      color:#AFA4B8;
    }
    .breadcrumb a:hover{
      color:var(--gold-bright);
    }
    .breadcrumb span{
      color:rgba(175,164,184,.7);
    }

    /* ===== Section decorations ===== */
    .section-head{
      display:flex;
      flex-wrap:wrap;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:42px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:12px;
      letter-spacing:.14em;
      color:var(--gold);
      font-weight:600;
    }
    .section-kicker::before{
      content:"";
      width:22px;
      height:2px;
      background:linear-gradient(90deg,var(--gold),transparent);
      border-radius:2px;
    }
    .section-title{
      margin-top:10px;
      font-size:36px;
      line-height:1.24;
      font-weight:800;
      color:#fff;
      letter-spacing:.01em;
    }
    .section-desc{
      max-width:660px;
      color:var(--muted);
      font-size:16px;
    }
    .section-title .grad-text{
      background:linear-gradient(90deg,#D4A96A,#EFC88F,#D4A96A);
      -webkit-background-clip:text;
      background-clip:text;
      -webkit-text-fill-color:transparent;
    }
    .more-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      font-weight:600;
      font-size:14px;
      color:var(--gold);
      white-space:nowrap;
    }
    .more-link i{
      transition:transform .25s ease;
    }
    .more-link:hover i{
      transform:translateX(5px);
    }

    /* ===== Category Hero ===== */
    .cat-hero{
      position:relative;
      min-height:66vh;
      padding:118px 0 108px;
      background:
        linear-gradient(180deg, rgba(16,12,20,.18) 0%, rgba(16,12,20,.92) 86%, #100C14 100%),
        url('/assets/images/backpic/back-2.png') center 30%/cover no-repeat;
      overflow:hidden;
    }
    .cat-hero::before{
      content:"";
      position:absolute;
      width:560px;
      height:280px;
      right:-120px;
      top:-60px;
      background:radial-gradient(circle, rgba(212,169,106,.22), transparent 68%);
      pointer-events:none;
    }
    .cat-hero-inner{
      position:relative;
      z-index:3;
    }
    .cat-hero-flex{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:56px;
    }
    .hero-copy{
      max-width:640px;
      flex:1 1 auto;
    }
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:7px 16px 8px;
      border-radius:99px;
      background:rgba(255,211,154,.10);
      border:1px solid rgba(255,211,154,.32);
      color:var(--gold-bright);
      font-size:13px;
      font-weight:600;
      margin-bottom:24px;
    }
    .cat-hero-title{
      font-size:64px;
      line-height:1.08;
      font-weight:900;
      color:#fff;
      margin-bottom:22px;
      letter-spacing:.01em;
    }
    .cat-hero-title .grad-text{
      background:linear-gradient(120deg,#F0CC92,#C99858);
      -webkit-background-clip:text;
      background-clip:text;
      -webkit-text-fill-color:transparent;
    }
    .cat-hero-desc{
      max-width:570px;
      color:#DCD1E3;
      font-size:17px;
      line-height:1.85;
      margin-bottom:30px;
    }
    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }
    .hero-spot{
      width:378px;
      max-width:100%;
      flex-shrink:0;
      background:rgba(23,17,29,.86);
      border:1px solid rgba(255,211,154,.20);
      border-radius:20px;
      padding:22px 22px 16px;
      box-shadow:0 24px 60px rgba(0,0,0,.32);
      backdrop-filter:blur(3px);
    }
    .spot-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      border-bottom:1px solid var(--line);
      padding-bottom:12px;
      margin-bottom:10px;
    }
    .spot-head h3{
      font-size:18px;
      font-weight:700;
      color:#fff;
    }
    .spot-head span{
      color:var(--coral);
      font-size:12px;
      letter-spacing:.1em;
      font-weight:700;
    }
    .spot-item{
      display:flex;
      align-items:center;
      gap:13px;
      padding:11px 2px;
      border-bottom:1px solid rgba(255,211,154,.08);
    }
    .spot-item:last-child{
      border-bottom:0;
    }
    .spot-index{
      font-size:23px;
      font-weight:800;
      color:var(--coral);
      line-height:1;
    }
    .spot-item .spot-meta{
      min-width:0;
    }
    .spot-item strong{
      display:block;
      font-size:15px;
      color:var(--text);
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .spot-item small{
      color:var(--muted);
      font-size:12px;
    }

    /* ===== Overview split ===== */
    .overview-section{
      background:var(--bg-soft);
    }
    .overview-grid{
      display:flex;
      align-items:center;
      gap:64px;
    }
    .overview-media{
      flex:1 1 46%;
      position:relative;
      border-radius:20px;
      overflow:hidden;
      box-shadow:var(--shadow-md);
    }
    .overview-media img{
      width:100%;
      height:460px;
      object-fit:cover;
    }
    .overview-media::after{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:55%;
      background:linear-gradient(180deg, transparent, rgba(16,12,20,.82));
      pointer-events:none;
    }
    .play-btn{
      position:absolute;
      left:50%;
      top:50%;
      width:74px;
      height:74px;
      transform:translate(-50%,-50%);
      z-index:2;
      border-radius:50%;
      background:rgba(212,169,106,.94);
      color:#241B2D;
      font-size:23px;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 0 0 10px rgba(212,169,106,.16);
      transition:transform .25s ease, background .25s ease;
    }
    .play-btn:hover{
      transform:translate(-50%,-50%) scale(1.08);
      background:var(--gold-bright);
      color:#241B2D;
    }
    .overview-copy{
      flex:1 1 44%;
      padding:20px 0;
    }
    .overview-copy .section-title{
      margin-bottom:18px;
    }
    .overview-copy > p{
      color:var(--muted);
      font-size:16px;
      margin-bottom:22px;
    }
    .feature-list li{
      display:flex;
      align-items:flex-start;
      gap:14px;
      padding:14px 0;
      border-top:1px solid rgba(255,211,154,.08);
    }
    .feature-list li:last-child{
      border-bottom:1px solid rgba(255,211,154,.08);
    }
    .feature-icon{
      width:38px;
      height:38px;
      flex:0 0 38px;
      border-radius:11px;
      background:rgba(212,169,106,.12);
      border:1px solid rgba(212,169,106,.22);
      color:var(--gold-bright);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:16px;
    }
    .feature-list strong{
      display:block;
      color:#fff;
      font-size:16px;
      line-height:1.4;
    }
    .feature-list p{
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }

    /* ===== Channel board ===== */
    .channel-section{
      background:var(--bg);
    }
    .channel-item{
      display:flex;
      align-items:center;
      gap:22px;
      background:rgba(26,20,34,.90);
      border:1px solid rgba(255,211,154,.08);
      border-left:3px solid var(--gold);
      border-radius:16px;
      padding:24px 26px;
      margin-bottom:18px;
      transition:all .25s ease;
    }
    .channel-item:hover{
      background:var(--card-hover);
      border-color:rgba(255,211,154,.32);
      border-left-color:var(--gold-bright);
      transform:translateX(6px);
      box-shadow:var(--shadow-sm);
    }
    .channel-icon{
      width:56px;
      height:56px;
      flex:0 0 56px;
      border-radius:16px;
      background:linear-gradient(135deg,rgba(212,169,106,.20),rgba(212,169,106,.02));
      border:1px solid rgba(212,169,106,.30);
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--gold-bright);
      font-size:22px;
    }
    .channel-body{
      flex:1;
    }
    .channel-body h3{
      font-size:19px;
      font-weight:700;
      color:#fff;
      margin-bottom:4px;
    }
    .channel-body p{
      color:var(--muted);
      font-size:14px;
      margin-bottom:12px;
    }
    .tag-list{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .chip-tag{
      display:inline-flex;
      align-items:center;
      padding:5px 12px;
      border-radius:99px;
      background:rgba(255,211,154,.07);
      border:1px solid rgba(255,211,154,.16);
      color:#C7B9CA;
      font-size:12px;
    }
    .channel-thumb{
      width:180px;
      flex:0 0 180px;
      border-radius:14px;
      overflow:hidden;
    }
    .channel-thumb img{
      width:100%;
      height:118px;
      object-fit:cover;
      transition:transform .5s ease;
    }
    .channel-item:hover .channel-thumb img{
      transform:scale(1.06);
    }

    /* ===== Guide Flow ===== */
    .guide-section{
      background:var(--bg-soft);
    }
    .guide-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:24px;
      margin-top:20px;
    }
    .guide-step{
      position:relative;
      background:rgba(26,20,34,.92);
      border:1px solid rgba(255,211,154,.08);
      border-radius:18px;
      padding:30px 24px 26px;
      transition:all .25s ease;
    }
    .guide-step:hover{
      border-color:rgba(212,169,106,.48);
      transform:translateY(-5px);
    }
    .step-no{
      display:inline-block;
      font-size:12px;
      letter-spacing:.12em;
      color:var(--gold);
      font-weight:800;
      background:rgba(212,169,106,.12);
      border-radius:99px;
      padding:6px 12px;
      margin-bottom:16px;
    }
    .guide-step h3{
      color:#fff;
      font-size:18px;
      font-weight:700;
      margin-bottom:10px;
    }
    .guide-step p{
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }

    /* ===== Media feature ===== */
    .feature-wall{
      background:var(--bg);
    }
    .fw-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:24px;
    }
    .primary-card{
      position:relative;
      border-radius:20px;
      overflow:hidden;
      min-height:480px;
      display:flex;
      align-items:flex-end;
      background:var(--card);
    }
    .primary-card > img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .6s ease;
    }
    .primary-card:hover > img{
      transform:scale(1.045);
    }
    .primary-card::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(16,12,20,.05), rgba(16,12,20,.30) 40%, rgba(16,12,20,.92) 100%);
    }
    .primary-card .card-copy{
      position:relative;
      z-index:2;
      padding:34px 30px;
    }
    .card-top-tags{
      display:flex;
      gap:8px;
      margin-bottom:14px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:5px;
      border-radius:6px;
      padding:4px 10px;
      font-size:11px;
      font-weight:700;
      letter-spacing:.05em;
      line-height:1.5;
    }
    .badge-hot{
      background:rgba(226,105,95,.85);
      color:#fff;
    }
    .badge-new{
      background:rgba(99,167,131,.88);
      color:#fff;
    }
    .badge-gold{
      background:rgba(212,169,106,.16);
      border:1px solid rgba(212,169,106,.45);
      color:var(--gold-bright);
    }
    .primary-card h3{
      font-size:28px;
      font-weight:800;
      color:#fff;
      line-height:1.3;
      margin-bottom:10px;
    }
    .primary-card p{
      color:rgba(245,239,230,.84);
      font-size:15px;
      max-width:500px;
    }
    .side-stack{
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    .info-panel{
      background:rgba(26,20,34,.92);
      border:1px solid var(--line);
      border-radius:18px;
      padding:25px;
      flex:1;
    }
    .info-panel h3{
      color:#fff;
      font-size:17px;
      font-weight:700;
      margin-bottom:14px;
    }
    .data-line{
      display:flex;
      align-items:center;
      gap:12px;
      padding:12px 0;
      border-top:1px solid rgba(255,211,154,.08);
    }
    .data-num{
      font-size:21px;
      font-weight:800;
      color:var(--gold-bright);
      width:44px;
    }
    .data-txt strong{
      display:block;
      color:#fff;
      font-size:14px;
    }
    .data-txt span{
      color:var(--muted);
      font-size:12px;
    }
    .mini-cover-list .list-row{
      display:flex;
      gap:12px;
      padding:12px 0;
      border-top:1px solid rgba(255,211,154,.08);
    }
    .mini-cover-list .list-row img{
      width:80px;
      flex:0 0 80px;
      height:54px;
      object-fit:cover;
      border-radius:8px;
    }
    .list-row strong{
      color:#fff;
      font-size:14px;
      font-weight:600;
      line-height:1.5;
    }
    .list-row small{
      color:var(--muted);
      font-size:12px;
    }

    /* ===== CTA ===== */
    .cta-banner{
      position:relative;
      background:
        linear-gradient(100deg, rgba(16,12,20,.90) 15%, rgba(16,12,20,.45) 70%, rgba(16,12,20,.82)),
        url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
      border-top:1px solid rgba(255,211,154,.08);
      border-bottom:1px solid rgba(255,211,154,.08);
    }
    .cta-inner{
      padding:92px 0;
      text-align:center;
    }
    .cta-inner h2{
      font-size:40px;
      color:#fff;
      line-height:1.25;
      font-weight:800;
      margin-bottom:16px;
    }
    .cta-inner h2 span{
      color:var(--gold-bright);
    }
    .cta-inner p{
      color:#C9BDD1;
      max-width:640px;
      margin:0 auto 30px;
      font-size:16px;
    }
    .cta-actions{
      display:flex;
      justify-content:center;
      gap:14px;
      flex-wrap:wrap;
    }

    /* ===== FAQ ===== */
    .faq-section{
      background:var(--bg);
    }
    .faq-wrap{
      max-width:860px;
      margin:0 auto;
    }
    .faq-item{
      background:rgba(26,20,34,.88);
      border:1px solid rgba(255,211,154,.08);
      border-radius:14px;
      margin-bottom:14px;
      overflow:hidden;
      transition:border-color .3s ease;
    }
    .faq-item.active{
      border-color:rgba(212,169,106,.42);
    }
    .faq-question{
      width:100%;
      display:flex;
      align-items:center;
      gap:16px;
      justify-content:space-between;
      text-align:left;
      padding:21px 24px;
      color:#F5EFE6;
      font-size:16px;
      font-weight:600;
      line-height:1.5;
    }
    .faq-q-icon{
      width:28px;
      height:28px;
      border-radius:50%;
      background:rgba(212,169,106,.12);
      color:var(--gold);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:13px;
      flex:0 0 28px;
    }
    .faq-toggle{
      width:30px;
      height:30px;
      flex:0 0 30px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      color:var(--gold);
      background:rgba(255,211,154,.08);
      font-size:13px;
      transition:transform .25s ease;
    }
    .faq-item.active .faq-toggle{
      transform:rotate(45deg);
    }
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .38s ease;
    }
    .faq-answer-inner{
      padding:0 24px 24px 68px;
      color:var(--muted);
      font-size:14px;
      line-height:1.9;
    }

    /* ===== Footer ===== */
    .site-footer{
      background:var(--bg-deep);
      border-top:1px solid rgba(255,211,154,.10);
      padding:64px 0 34px;
    }
    .container{
      max-width:1230px;
      padding-left:24px;
      padding-right:24px;
      margin:0 auto;
    }
    .footer-top{
      display:grid;
      grid-template-columns:1.4fr 2fr;
      gap:52px;
      padding-bottom:34px;
    }
    .footer-brand-col .logo-text{
      font-size:23px;
    }
    .footer-brand-col p{
      margin-top:16px;
      color:var(--muted);
      font-size:14px;
      max-width:350px;
      line-height:1.8;
    }
    .footer-links-wrap{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:28px;
    }
    .footer-links-group h4{
      color:#fff;
      font-size:14px;
      margin-bottom:14px;
      font-weight:700;
    }
    .footer-links-group a{
      display:block;
      color:var(--muted);
      font-size:13px;
      padding:4px 0;
    }
    .footer-links-group a:hover{
      color:var(--gold-bright);
    }
    .footer-bottom{
      border-top:1px solid rgba(255,211,154,.08);
      padding-top:22px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:15px;
      color:var(--muted);
      font-size:13px;
      flex-wrap:wrap;
    }
    .footer-bottom .seo-meta-text{
      opacity:.9;
    }

    /* ===== Responsive ===== */
    @media screen and (max-width:1023px){
      .nav-desktop,
      .header-actions .nav-cta,
      .header-actions .search-btn{
        display:none!important;
      }
      .nav-trigger{
        display:flex;
      }
      .cat-hero-flex{
        flex-wrap:wrap;
      }
      .hero-spot{
        width:100%;
      }
      .guide-grid{
        grid-template-columns:repeat(2,1fr);
      }
      .fw-grid{
        grid-template-columns:1fr;
      }
      .overview-grid{
        flex-wrap:wrap;
        gap:40px;
      }
      .overview-media,
      .overview-copy{
        flex:1 1 100%;
      }
    }
    @media screen and (max-width:767px){
      .header-inner{
        height:60px;
        padding:0 16px;
        gap:12px;
      }
      .logo-icon{
        width:32px;
        height:32px;
        font-size:15px;
      }
      .logo-text{
        font-size:17px;
      }
      .section-pad,
      .section-pad-sm{
        padding:62px 0;
      }
      .section-title{
        font-size:28px;
      }
      .cat-hero{
        min-height:0;
        padding:86px 0 72px;
      }
      .cat-hero-title{
        font-size:42px;
      }
      .cat-hero-desc{
        font-size:15px;
      }
      .hero-actions{
        flex-direction:column;
      }
      .hero-actions .btn{
        width:100%;
      }
      .hero-spot{
        margin-top:8px;
      }
      .channel-item{
        flex-wrap:wrap;
        align-items:flex-start;
      }
      .channel-thumb{
        width:100%;
        flex-basis:100%;
      }
      .channel-thumb img{
        height:150px;
      }
      .cta-inner h2{
        font-size:30px;
      }
      .footer-top{
        grid-template-columns:1fr;
        gap:30px;
      }
      .footer-links-wrap{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
      }
    }
    @media screen and (max-width:620px){
      .grid-container{
        padding-left:18px;
        padding-right:18px;
      }
      .container{
        padding-left:18px;
        padding-right:18px;
      }
      .guide-grid{
        grid-template-columns:1fr;
      }
      .breadcrumb{
        font-size:12px;
      }
      .mobile-panel ul{
        padding-left:10px;
        padding-right:10px;
      }
    }
