/* roulang page: index */
:root{
  --brand-deep:#0B3B2E;
  --brand-mid:#14633D;
  --brand-light:#1E8C57;
  --gold:#C29A1F;
  --gold-light:#E9CE7A;
  --gold-grad:linear-gradient(120deg,#E9CE7A 0%,#C29A1F 100%);
  --bg:#F7F5F0;
  --card:#FFFFFF;
  --text:#1B2321;
  --text-sub:#53605B;
  --text-weak:#8A9891;
  --dark-text:#FFFFFF;
  --dark-sub:#D5E0DA;
  --danger:#E65C4F;
  --warn:#E6A23C;
  --info:#2F6FB2;
  --radius:16px;
  --radius-lg:20px;
  --radius-pill:999px;
  --shadow-sm:0 2px 8px rgba(16,32,27,.06);
  --shadow-md:0 8px 24px rgba(16,32,27,.08);
  --shadow-lg:0 24px 64px rgba(16,32,27,.14);
  --container:1240px;
  --header-h:72px;
  --transition:.25s cubic-bezier(.4,0,.2,1);
  --font:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Helvetica Neue",Arial,sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);
  font-size:16px;
  line-height:1.75;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:var(--brand-mid);text-decoration:none;transition:color var(--transition);cursor:pointer}
a:hover{color:var(--brand-light)}
a:focus-visible,button:focus-visible,input:focus-visible{outline:2px solid var(--gold);outline-offset:2px}
ul,ol{list-style:none}
button{font-family:var(--font);border:none;background:none;cursor:pointer}
input{font-family:var(--font);border:none;outline:none}
.container{max-width:var(--container);margin:0 auto;padding-left:32px;padding-right:32px}
.section{padding-top:96px;padding-bottom:96px}

/* 顶部通告条 */
.top-bar{
  background:linear-gradient(90deg,#E6A23C,#D98E26);
  color:#1B2321;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:1001;
  overflow:hidden;
}
.top-bar-inner{
  max-width:var(--container);
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 32px;
  gap:16px;
}
.top-bar-ticker{
  overflow:hidden;
  flex:1;
  white-space:nowrap;
  font-size:13px;
  font-weight:600;
  letter-spacing:.02em;
}
.top-bar-ticker span{
  display:inline-block;
  animation:ticker 20s linear infinite;
}
@keyframes ticker{
  0%{transform:translateX(100%)}
  100%{transform:translateX(-100%)}
}
.top-bar-detail{
  color:#1B2321;
  font-size:13px;
  font-weight:700;
  flex-shrink:0;
  padding:4px 14px;
  border-radius:var(--radius-pill);
  background:rgba(255,255,255,.35);
  transition:background var(--transition);
}
.top-bar-detail:hover{background:rgba(255,255,255,.6);color:#1B2321}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  height:var(--header-h);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(27,35,33,.08);
  transition:box-shadow var(--transition),height var(--transition);
}
.header.scrolled{
  height:64px;
  box-shadow:var(--shadow-md);
}
.header-inner{
  max-width:var(--container);
  margin:0 auto;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 32px;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.logo-icon{
  width:36px;height:36px;
  border-radius:10px;
  background:linear-gradient(135deg,#0B3B2E 0%,#14633D 55%,#1E8C57 100%);
  display:flex;align-items:center;justify-content:center;
  position:relative;
  box-shadow:0 2px 8px rgba(20,99,61,.3);
}
.logo-icon svg{width:20px;height:20px}
.logo-text{
  font-size:20px;
  font-weight:900;
  color:var(--brand-deep);
  letter-spacing:.01em;
  line-height:1.2;
}
.logo-divider{
  width:1px;height:22px;
  background:rgba(27,35,33,.15);
}
.logo-sub{
  font-size:12px;
  color:var(--text-weak);
  font-weight:500;
  letter-spacing:.08em;
}
.nav-menu{
  display:flex;
  align-items:center;
  gap:32px;
}
.nav-link{
  font-size:15px;
  font-weight:500;
  color:var(--text);
  position:relative;
  padding:6px 0;
  transition:color var(--transition);
}
.nav-link::after{
  content:"";
  position:absolute;
  bottom:0;left:50%;
  transform:translateX(-50%);
  width:0;height:2px;
  border-radius:2px;
  background:var(--gold-grad);
  transition:width var(--transition);
}
.nav-link:hover{color:var(--brand-mid)}
.nav-link:hover::after{width:100%}
.nav-link.active{color:var(--brand-mid);font-weight:700}
.nav-link.active::after{width:100%}
.nav-cta{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 28px;
  border-radius:var(--radius-pill);
  font-size:15px;
  font-weight:600;
  transition:transform var(--transition),box-shadow var(--transition),background var(--transition);
  white-space:nowrap;
}
.btn-primary{
  background:var(--gold-grad);
  color:#fff;
  box-shadow:0 4px 14px rgba(194,154,31,.35);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(194,154,31,.4);
  color:#fff;
}
.btn-primary:active{transform:translateY(1px)}
.btn-ghost{
  background:transparent;
  color:var(--brand-deep);
  border:1.5px solid rgba(11,59,46,.3);
}
.btn-ghost:hover{
  border-color:var(--brand-mid);
  color:var(--brand-mid);
  transform:translateY(-2px);
}
.btn-ghost:active{transform:translateY(1px)}
.btn-gold-large{
  background:var(--gold-grad);
  color:#fff;
  padding:16px 44px;
  font-size:16px;
  font-weight:700;
  border-radius:var(--radius-pill);
  box-shadow:0 8px 24px rgba(194,154,31,.4);
  transition:transform var(--transition),box-shadow var(--transition);
}
.btn-gold-large:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(194,154,31,.5);color:#fff}
.btn-gold-large:active{transform:translateY(1px)}
.btn-ghost-dark{
  background:transparent;
  color:#fff;
  border:1.5px solid rgba(255,255,255,.5);
  padding:12px 28px;
  border-radius:var(--radius-pill);
  font-size:15px;
  font-weight:600;
  transition:all var(--transition);
}
.btn-ghost-dark:hover{background:rgba(255,255,255,.1);border-color:#fff;color:#fff;transform:translateY(-2px)}
.btn-ghost-dark:active{transform:translateY(1px)}
.hamburger{
  display:none;
  width:44px;height:44px;
  border-radius:12px;
  align-items:center;
  justify-content:center;
  background:rgba(11,59,46,.06);
  color:var(--brand-deep);
  font-size:20px;
  transition:background var(--transition);
}
.hamburger:hover{background:rgba(11,59,46,.12)}
.mobile-nav{
  display:none;
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  background:#fff;
  z-index:2000;
  padding:24px;
  flex-direction:column;
  visibility:hidden;
  opacity:0;
  transition:opacity .3s,visibility .3s;
}
.mobile-nav.open{visibility:visible;opacity:1;display:flex}
.mobile-nav-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 0 24px;
  border-bottom:1px solid rgba(27,35,33,.08);
}
.mobile-nav-links{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:8px;
  padding-top:24px;
}
.mobile-nav-link{
  font-size:20px;
  font-weight:700;
  color:var(--text);
  padding:14px 0;
  border-bottom:1px solid rgba(27,35,33,.06);
  transition:color var(--transition);
}
.mobile-nav-link:hover{color:var(--brand-mid)}
.mobile-nav-link.active{color:var(--brand-mid)}
.mobile-nav-cta{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-top:24px;
}

/* Hero */
.hero{
  position:relative;
  min-height:92vh;
  min-height:640px;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,var(--brand-deep) 0%,var(--brand-mid) 55%,var(--brand-light) 100%);
  overflow:hidden;
  padding:72px 0;
}
.hero::before{
  content:"";
  position:absolute;
  top:-180px;right:-120px;
  width:480px;height:480px;
  border-radius:50%;
  background:rgba(201,162,39,.18);
  filter:blur(120px);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  bottom:-220px;left:-60px;
  width:420px;height:420px;
  border-radius:50%;
  background:rgba(46,158,96,.25);
  filter:blur(140px);
  pointer-events:none;
}
.hero-bg-img{
  position:absolute;
  inset:0;
  background-image:url('/assets/images/backpic/back-1.webp');
  background-size:cover;
  background-position:center;
  opacity:.09;
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:64px;
  align-items:center;
  width:100%;
}
.hero-left{
  display:flex;
  flex-direction:column;
  gap:24px;
  max-width:640px;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--gold-grad);
  color:#fff;
  padding:7px 18px;
  border-radius:var(--radius-pill);
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  width:fit-content;
  box-shadow:0 4px 14px rgba(194,154,31,.35);
}
.hero-title{
  font-size:48px;
  font-weight:900;
  line-height:1.2;
  color:#fff;
  letter-spacing:.01em;
  text-shadow:0 2px 20px rgba(0,0,0,.15);
}
.hero-title .highlight{
  background:var(--gold-grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-subtitle{
  font-size:18px;
  line-height:1.8;
  color:var(--dark-sub);
  max-width:520px;
}
.hero-stats{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:8px;
}
.stat-badge{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  padding:12px 18px;
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:120px;
}
.stat-badge .num{
  font-size:28px;
  font-weight:800;
  color:var(--gold-light);
  line-height:1.2;
  font-variant-numeric:tabular-nums;
}
.stat-badge .label{
  font-size:13px;
  color:var(--dark-sub);
}
.hero-actions{
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:8px;
}
.hero-cover{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}
.cover-card{
  position:relative;
  width:100%;
  max-width:360px;
  aspect-ratio:3/4;
  border-radius:20px;
  background:#fff;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  transform:rotate(1deg);
  transition:transform .4s ease;
}
.cover-card:hover{transform:rotate(0deg) scale(1.02)}
.cover-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.cover-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 30%,rgba(0,0,0,.75) 100%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:20px;
  gap:10px;
}
.cover-live-tag{
  position:absolute;
  top:16px;left:16px;
  background:#E65C4F;
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  padding:5px 12px;
  border-radius:6px;
  display:flex;
  align-items:center;
  gap:5px;
}
.cover-live-tag::before{
  content:"";
  width:6px;height:6px;
  border-radius:50%;
  background:#fff;
  animation:pulse 1.5s infinite;
}
@keyframes pulse{
  0%,100%{opacity:1}
  50%{opacity:.4}
}
.cover-title-row{color:#fff;font-size:16px;font-weight:700;line-height:1.5}
.cover-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--dark-sub);
  font-size:12px;
}
.cover-count{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-variant-numeric:tabular-nums;
}
.cover-countdown{
  font-size:12px;
  font-weight:700;
  color:var(--gold-light);
  padding:4px 12px;
  border-radius:6px;
  background:rgba(255,255,255,.12);
}

/* 倒计时 */
.countdown-section{
  background:var(--brand-deep);
  padding:96px 0;
  position:relative;
  overflow:hidden;
}
.countdown-section::before{
  content:"";
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:700px;height:700px;
  border-radius:50%;
  background:rgba(201,162,39,.06);
  filter:blur(80px);
  pointer-events:none;
}
.countdown-inner{
  position:relative;
  z-index:2;
  text-align:center;
}
.countdown-title{
  font-size:32px;
  font-weight:800;
  color:#fff;
  margin-bottom:8px;
}
.countdown-subtitle{
  color:var(--dark-sub);
  font-size:16px;
  margin-bottom:48px;
}
.countdown-grid{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:40px;
}
.countdown-item{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:24px 32px;
  min-width:120px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.countdown-item .num{
  font-size:72px;
  font-weight:800;
  color:var(--gold-light);
  line-height:1;
  font-variant-numeric:tabular-nums;
}
.countdown-item .label{
  font-size:12px;
  color:var(--dark-sub);
  letter-spacing:.16em;
  text-transform:uppercase;
}
.countdown-sep{
  font-size:42px;
  color:rgba(255,255,255,.25);
  font-weight:200;
  align-self:center;
  padding-bottom:24px;
}
.countdown-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}
.countdown-badge{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  padding:10px 18px;
  color:var(--dark-sub);
  font-size:14px;
}

/* 看点 */
.highlights-section{
  background:var(--bg);
}
.section-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:48px;
  gap:24px;
}
.section-header h2{
  font-size:30px;
  font-weight:800;
  color:var(--text);
  line-height:1.3;
}
.section-header .desc{
  color:var(--text-sub);
  font-size:15px;
  max-width:480px;
}
.section-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:600;
  color:var(--brand-mid);
  white-space:nowrap;
  transition:gap var(--transition);
}
.section-link:hover{gap:10px;color:var(--brand-light)}
.timeline-list{
  display:flex;
  flex-direction:column;
  gap:0;
}
.timeline-item{
  display:grid;
  grid-template-columns:80px 1fr auto;
  gap:24px;
  align-items:center;
  padding:32px 16px;
  border-radius:16px;
  transition:background var(--transition),transform var(--transition);
  position:relative;
}
.timeline-item:hover{
  background:#fff;
  box-shadow:var(--shadow-sm);
  transform:translateX(4px);
}
.timeline-item:not(:last-child){
  border-bottom:1px solid rgba(27,35,33,.06);
}
.timeline-num{
  width:56px;height:56px;
  border-radius:14px;
  background:var(--brand-deep);
  color:var(--gold-light);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:800;
  font-variant-numeric:tabular-nums;
}
.timeline-num.hot{
  background:var(--danger);
  color:#fff;
}
.timeline-body h3{
  font-size:18px;
  font-weight:700;
  color:var(--text);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:6px;
}
.timeline-body p{
  font-size:14px;
  color:var(--text-sub);
  line-height:1.6;
}
.timeline-time{
  font-size:14px;
  color:var(--text-weak);
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
}
.hot-badge{
  background:rgba(230,92,79,.12);
  color:var(--danger);
  font-size:12px;
  font-weight:700;
  padding:3px 10px;
  border-radius:6px;
  letter-spacing:.04em;
}
.share-link{
  margin-top:32px;
  text-align:center;
}
.share-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 24px;
  border-radius:var(--radius-pill);
  background:rgba(11,59,46,.06);
  color:var(--brand-mid);
  font-size:14px;
  font-weight:600;
  transition:background var(--transition),transform var(--transition);
}
.share-btn:hover{background:rgba(11,59,46,.1);transform:translateY(-2px)}

/* 订阅 CTA */
.cta-subscribe{
  background:var(--bg);
}
.cta-card{
  position:relative;
  background:linear-gradient(135deg,var(--brand-deep) 0%,var(--brand-mid) 70%);
  border-radius:24px;
  padding:64px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.cta-card::before{
  content:"";
  position:absolute;
  top:-100px;right:-80px;
  width:380px;height:380px;
  border-radius:50%;
  background:rgba(201,162,39,.22);
  filter:blur(90px);
  pointer-events:none;
}
.cta-card::after{
  content:"";
  position:absolute;
  bottom:-160px;left:20%;
  width:260px;height:260px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  filter:blur(60px);
  pointer-events:none;
}
.cta-left{
  position:relative;
  z-index:2;
}
.cta-left h2{
  font-size:28px;
  font-weight:800;
  color:#fff;
  line-height:1.3;
  margin-bottom:12px;
}
.cta-left p{
  color:var(--dark-sub);
  font-size:15px;
  line-height:1.7;
}
.cta-right{
  position:relative;
  z-index:2;
}
.subscribe-form{
  display:flex;
  gap:12px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  border-radius:14px;
  padding:8px;
}
.subscribe-form input{
  flex:1;
  background:transparent;
  border:none;
  color:#fff;
  font-size:15px;
  padding:12px 16px;
}
.subscribe-form input::placeholder{color:rgba(255,255,255,.5)}
.subscribe-form button{
  padding:12px 28px;
  border-radius:10px;
  background:var(--gold-grad);
  color:#fff;
  font-weight:700;
  font-size:15px;
  transition:transform var(--transition),box-shadow var(--transition);
}
.subscribe-form button:hover{transform:translateY(-2px);box-shadow:0 6px 18px rgba(194,154,31,.4)}
.subscribe-note{
  font-size:12px;
  color:rgba(255,255,255,.5);
  margin-top:12px;
}

/* 回放区 */
.replays-section{
  background:var(--bg);
  padding-top:0;
}
.replay-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.replay-card{
  background:var(--card);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform var(--transition),box-shadow var(--transition);
  display:flex;
  flex-direction:column;
  border:1px solid rgba(27,35,33,.05);
}
.replay-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}
.replay-cover{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
}
.replay-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.replay-card:hover .replay-cover img{transform:scale(1.05)}
.replay-duration{
  position:absolute;
  bottom:12px;right:12px;
  background:rgba(0,0,0,.75);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:4px 10px;
  border-radius:8px;
  font-variant-numeric:tabular-nums;
}
.replay-tag{
  position:absolute;
  top:12px;left:12px;
  background:rgba(255,255,255,.92);
  color:var(--brand-mid);
  font-size:12px;
  font-weight:700;
  padding:4px 12px;
  border-radius:6px;
  letter-spacing:.04em;
}
.replay-body{
  padding:20px 24px 24px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}
.replay-body h3{
  font-size:17px;
  font-weight:700;
  color:var(--text);
  line-height:1.5;
  transition:color var(--transition);
}
.replay-card:hover .replay-body h3{color:var(--brand-mid)}
.replay-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:13px;
  color:var(--text-weak);
}
.replay-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand-mid);
  font-size:14px;
  font-weight:700;
  transition:gap var(--transition);
}
.replay-btn:hover{gap:12px;color:var(--brand-light)}

/* CMS 最新动态 */
.news-section{
  background:#fff;
}
.news-section .section-header h2{
  display:flex;
  align-items:center;
  gap:12px;
}
.news-section .section-header h2 .live-dot{
  width:8px;height:8px;
  border-radius:50%;
  background:var(--danger);
  animation:pulse 1.5s infinite;
}
.news-list{
  display:flex;
  flex-direction:column;
  gap:0;
}
.news-row{
  display:grid;
  grid-template-columns:88px 1fr auto;
  gap:32px;
  align-items:center;
  padding:28px 16px;
  border-radius:14px;
  transition:background var(--transition),transform var(--transition);
  border-bottom:1px solid rgba(27,35,33,.06);
}
.news-row:last-child{border-bottom:none}
.news-row:hover{
  background:rgba(27,35,33,.03);
  transform:translateX(4px);
}
.news-date{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:rgba(11,59,46,.04);
  border-radius:12px;
  padding:12px 16px;
  text-align:center;
  line-height:1.2;
}
.news-date .day{
  font-size:32px;
  font-weight:800;
  color:var(--brand-mid);
  font-variant-numeric:tabular-nums;
}
.news-date .month{
  font-size:13px;
  color:var(--text-weak);
  margin-top:4px;
}
.news-body h3{
  font-size:18px;
  font-weight:700;
  color:var(--text);
  margin-bottom:6px;
  transition:color var(--transition);
  line-height:1.5;
}
.news-body h3 a{color:inherit}
.news-body h3 a:hover{color:var(--brand-mid)}
.news-body p{
  font-size:14px;
  color:var(--text-sub);
  line-height:1.6;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.news-cat{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(27,35,33,.05);
  color:var(--text-sub);
  font-size:13px;
  font-weight:600;
  padding:6px 16px;
  border-radius:8px;
  white-space:nowrap;
}
.news-row:hover .news-cat{
  background:var(--brand-mid);
  color:#fff;
}
.news-empty{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:80px 32px;
  text-align:center;
  color:var(--text-weak);
}
.news-empty-icon{
  width:80px;height:80px;
  border-radius:50%;
  background:rgba(30,140,87,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  color:var(--brand-light);
  margin-bottom:16px;
}
.news-empty p{font-size:15px}

/* FAQ */
.faq-section{
  background:var(--bg);
}
.faq-layout{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:64px;
}
.faq-title-col{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.faq-title-col h2{
  font-size:30px;
  font-weight:800;
  color:var(--text);
  line-height:1.3;
}
.faq-title-col p{
  font-size:15px;
  color:var(--text-sub);
  line-height:1.7;
}
.faq-title-col .faq-contact{
  margin-top:12px;
}
.faq-list{
  display:flex;
  flex-direction:column;
}
.faq-item{
  border-bottom:1px solid rgba(27,35,33,.08);
}
.faq-item:first-child{border-top:1px solid rgba(27,35,33,.08)}
.faq-question{
  display:flex;
  align-items:center;
  gap:16px;
  padding:24px 8px;
  cursor:pointer;
  transition:background var(--transition);
  width:100%;
  text-align:left;
  font-size:16px;
  font-weight:700;
  color:var(--text);
}
.faq-question:hover{color:var(--brand-mid)}
.faq-q-badge{
  width:28px;height:28px;
  background:var(--gold-grad);
  color:#fff;
  font-size:14px;
  font-weight:800;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.faq-icon{
  margin-left:auto;
  font-size:16px;
  color:var(--text-weak);
  transition:transform var(--transition);
  flex-shrink:0;
}
.faq-item.open .faq-icon{transform:rotate(45deg);color:var(--gold)}
.faq-answer{
  overflow:hidden;
  max-height:0;
  opacity:0;
  transition:max-height .4s ease,opacity .3s ease;
  padding:0 8px 0 44px;
}
.faq-item.open .faq-answer{
  max-height:500px;
  opacity:1;
  padding-bottom:24px;
}
.faq-answer p{
  font-size:15px;
  color:var(--text-sub);
  line-height:1.8;
}

/* Footer */
.footer{
  background:var(--brand-deep);
  color:#B7C7BF;
  padding-top:80px;
  position:relative;
  overflow:hidden;
}
.footer::before{
  content:"";
  position:absolute;
  top:-120px;right:-80px;
  width:360px;height:360px;
  border-radius:50%;
  background:rgba(201,162,39,.06);
  filter:blur(80px);
  pointer-events:none;
}
.footer-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:48px;
  padding-bottom:56px;
}
.footer-brand .logo-text{color:#fff}
.footer-brand .logo-divider{background:rgba(255,255,255,.2)}
.footer-brand .logo-sub{color:rgba(255,255,255,.5)}
.footer-desc{
  font-size:14px;
  line-height:1.7;
  margin-top:20px;
  color:#B7C7BF;
}
.footer-social{
  display:flex;
  gap:12px;
  margin-top:24px;
}
.footer-social a{
  width:36px;height:36px;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#B7C7BF;
  font-size:15px;
  transition:all var(--transition);
}
.footer-social a:hover{
  background:var(--gold-grad);
  color:#fff;
  transform:translateY(-2px);
  border-color:transparent;
}
.footer-col h4{
  color:#fff;
  font-size:16px;
  font-weight:700;
  margin-bottom:20px;
  letter-spacing:.02em;
}
.footer-links{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-links a{
  color:#B7C7BF;
  font-size:14px;
  transition:color var(--transition),padding-left var(--transition);
}
.footer-links a:hover{
  color:var(--gold-light);
  padding-left:4px;
}
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-contact-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  color:#B7C7BF;
}
.footer-contact-item i{
  color:var(--gold-light);
  width:18px;
  text-align:center;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:24px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:13px;
  color:rgba(255,255,255,.4);
}
.footer-bottom-links{
  display:flex;
  gap:24px;
}
.footer-bottom-links a{
  color:rgba(255,255,255,.4);
  font-size:13px;
  transition:color var(--transition);
}
.footer-bottom-links a:hover{color:var(--gold-light)}

/* 响应式 */
@media (max-width:1024px){
  .hero-inner{grid-template-columns:1fr;gap:40px;text-align:center}
  .hero-left{max-width:100%;align-items:center}
  .hero-title{font-size:38px}
  .hero-actions,.hero-stats{justify-content:center}
  .countdown-grid{gap:12px}
  .countdown-item{padding:18px 20px;min-width:90px}
  .countdown-item .num{font-size:56px}
  .nav-menu{gap:20px}
  .cta-card{grid-template-columns:1fr;padding:40px;gap:24px}
  .faq-layout{grid-template-columns:1fr;gap:32px}
  .footer-inner{grid-template-columns:1fr 1fr;gap:32px}
}
@media (max-width:768px){
  .section{padding-top:64px;padding-bottom:64px}
  .container{padding-left:24px;padding-right:24px}
  .nav-menu{display:none}
  .nav-cta .btn-ghost{display:none}
  .hamburger{display:flex}
  .hero{padding:56px 0;min-height:auto}
  .hero-title{font-size:32px}
  .hero-subtitle{font-size:16px}
  .replay-grid{grid-template-columns:repeat(2,1fr)}
  .timeline-item{grid-template-columns:56px 1fr;gap:16px}
  .timeline-time{display:none}
  .news-row{grid-template-columns:1fr;gap:12px;padding:20px 16px}
  .news-date{flex-direction:row;width:fit-content;gap:8px;padding:8px 16px}
  .news-date .month{margin-top:0}
}
@media (max-width:520px){
  .container{padding-left:16px;padding-right:16px}
  .top-bar-inner{padding:0 16px}
  .hero-title{font-size:28px}
  .countdown-grid{gap:10px}
  .countdown-item{padding:14px 16px;min-width:72px;border-radius:12px}
  .countdown-item .num{font-size:40px}
  .countdown-sep{display:none}
  .replay-grid{grid-template-columns:1fr}
  .cta-card{padding:32px 24px}
  .subscribe-form{flex-direction:column}
  .subscribe-form button{width:100%}
  .footer-inner{grid-template-columns:1fr;gap:32px}
  .forgot-link{display:none}
  .footer-bottom{flex-direction:column;text-align:center}
  .nav-cta .btn{display:none}
  .hamburger{display:flex}
}

/* roulang page: article */
/* ========== 设计变量 ========== */
        :root {
            --brand-deep: #0B3B2E;
            --brand-mid: #14633D;
            --brand-light: #1E8C57;
            --brand-gradient: linear-gradient(135deg, #0B3B2E 0%, #14633D 55%, #1E8C57 100%);
            --gold: #C29A1F;
            --gold-light: #E9CE7A;
            --gold-gradient: linear-gradient(120deg, #E9CE7A 0%, #C29A1F 100%);
            --bg: #F7F5F0;
            --card: #FFFFFF;
            --text: #1B2321;
            --text-secondary: #53605B;
            --text-muted: #8A9891;
            --border: rgba(27, 35, 33, 0.10);
            --deep-text-pri: #FFFFFF;
            --deep-text-sec: #D5E0DA;
            --success: #1E8C57;
            --warning: #E6A23C;
            --danger: #E65C4F;
            --info: #2F6FB2;
            --radius: 16px;
            --radius-lg: 20px;
            --radius-tag: 8px;
            --shadow-sm: 0 2px 8px rgba(16, 32, 27, .06);
            --shadow-md: 0 8px 24px rgba(16, 32, 27, .08);
            --shadow-lg: 0 24px 64px rgba(16, 32, 27, .14);
            --container: 1240px;
            --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
        }

        /* ========== Reset / Base ========== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-family);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            display: block;
            height: auto;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color .25s ease, background-color .25s ease, box-shadow .25s ease, opacity .25s ease, transform .25s ease;
        }
        a:hover,
        a:focus {
            color: var(--brand-mid);
            outline: none;
        }
        a:active {
            opacity: .85;
        }
        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
        }
        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
            border-radius: 4px;
        }
        ul,
        ol {
            list-style: none;
        }

        /* ========== 容器 ========== */
        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding-left: 32px;
            padding-right: 32px;
        }

        /* ========== 顶部通告条 ========== */
        .top-ticker {
            position: relative;
            z-index: 100;
            height: 40px;
            background: #E6A23C;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .top-ticker-content {
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            color: #fff;
            font-size: 13px;
            letter-spacing: .03em;
            padding-left: 24px;
        }
        .top-ticker-content span {
            display: inline-block;
            padding-right: 48px;
            animation: ticker-scroll 24s linear infinite;
        }
        .top-ticker-link {
            flex-shrink: 0;
            padding: 0 20px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            border-left: 1px solid rgba(255, 255, 255, .3);
            transition: background .25s;
        }
        .top-ticker-link:hover {
            background: rgba(255, 255, 255, .15);
            color: #fff;
        }
        @keyframes ticker-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ========== 导航 ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 90;
            height: 72px;
            background: rgba(255, 255, 255, .96);
            border-bottom: 1px solid var(--border);
            transition: height .3s ease, box-shadow .3s ease, background .3s ease;
            backdrop-filter: blur(10px);
        }
        .site-header.scrolled {
            height: 64px;
            box-shadow: var(--shadow-sm);
        }
        .header-inner {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, #0B3B2E, #1E8C57);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(11, 59, 46, .25);
        }
        .logo-text {
            font-size: 20px;
            font-weight: 900;
            color: var(--brand-deep);
            letter-spacing: .02em;
        }
        .logo-divider {
            width: 1px;
            height: 20px;
            background: rgba(27, 35, 33, .15);
        }
        .logo-sub {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: .05em;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-link {
            position: relative;
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: 999px;
            transition: color .25s, background .25s;
        }
        .nav-link::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 2px;
            height: 3px;
            border-radius: 3px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .3s ease;
        }
        .nav-link:hover {
            color: var(--brand-mid);
            background: rgba(27, 35, 33, .04);
        }
        .nav-link:hover::after {
            transform: scaleX(1);
        }
        .nav-link.active {
            color: var(--brand-mid);
            font-weight: 700;
        }
        .nav-link.active::after {
            transform: scaleX(1);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            padding: 0 24px;
            height: 44px;
            border-radius: 999px;
            transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease, opacity .25s;
            white-space: nowrap;
        }
        .btn-gold {
            background: var(--gold-gradient);
            color: #fff;
            box-shadow: 0 4px 16px rgba(201, 162, 39, .3);
        }
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 162, 39, .4);
            color: #fff;
        }
        .btn-gold:active {
            transform: translateY(1px);
            box-shadow: 0 2px 8px rgba(201, 162, 39, .3);
        }
        .btn-ghost {
            border: 1.5px solid rgba(27, 35, 33, .18);
            color: var(--text);
            background: transparent;
        }
        .btn-ghost:hover {
            border-color: var(--brand-mid);
            color: var(--brand-mid);
            transform: translateY(-2px);
        }
        .btn-ghost:active {
            transform: translateY(1px);
        }
        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(27, 35, 33, .05);
            color: var(--text);
            font-size: 20px;
            align-items: center;
            justify-content: center;
            transition: background .25s;
        }
        .nav-toggle:hover {
            background: rgba(27, 35, 33, .1);
        }

        /* ========== 面包屑 ========== */
        .breadcrumb-area {
            padding: 24px 0 8px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb a {
            color: var(--text-secondary);
            transition: color .25s;
        }
        .breadcrumb a:hover {
            color: var(--brand-mid);
        }
        .breadcrumb-sep {
            color: rgba(27, 35, 33, .25);
            font-size: 12px;
        }
        .breadcrumb-current {
            color: var(--text);
            font-weight: 600;
            max-width: 320px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* ========== 文章主体 ========== */
        .article-main {
            padding-top: 32px;
            padding-bottom: 96px;
        }
        .article-card {
            background: var(--card);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            padding: 48px 56px;
            max-width: 920px;
            margin: 0 auto 40px;
            transition: box-shadow .3s ease;
        }
        .article-card:hover {
            box-shadow: var(--shadow-md);
        }
        .article-category-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(30, 140, 87, .1);
            color: var(--brand-mid);
            font-size: 13px;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 999px;
            letter-spacing: .03em;
            margin-bottom: 20px;
        }
        .article-category-badge::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-mid);
        }
        .article-title {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.25;
            color: var(--text);
            letter-spacing: -.02em;
            margin: 0 0 20px;
        }
        .article-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 32px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .meta-item i {
            color: var(--gold);
            font-size: 14px;
            width: 16px;
            text-align: center;
        }
        .meta-dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(27, 35, 33, .25);
        }

        /* ========== 正文区 ========== */
        .article-content {
            font-size: 17px;
            line-height: 1.9;
            color: var(--text);
            word-break: break-word;
        }
        .article-content p {
            margin: 0 0 24px;
        }
        .article-content p:last-child {
            margin-bottom: 0;
        }
        .article-content h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--brand-deep);
            margin: 40px 0 20px;
            line-height: 1.35;
        }
        .article-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--brand-deep);
            margin: 32px 0 16px;
            line-height: 1.4;
        }
        .article-content h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin: 24px 0 12px;
        }
        .article-content img {
            max-width: 100%;
            border-radius: var(--radius);
            margin: 32px 0;
            box-shadow: var(--shadow-sm);
        }
        .article-content blockquote {
            border-left: 4px solid var(--gold);
            background: rgba(194, 154, 31, .07);
            border-radius: 0 12px 12px 0;
            padding: 18px 24px;
            margin: 32px 0;
            color: var(--text-secondary);
            font-style: italic;
        }
        .article-content blockquote p {
            margin-bottom: 8px;
        }
        .article-content blockquote p:last-child {
            margin-bottom: 0;
        }
        .article-content ul,
        .article-content ol {
            margin: 0 0 24px;
            padding-left: 24px;
        }
        .article-content ul li {
            position: relative;
            padding-left: 4px;
            margin-bottom: 8px;
        }
        .article-content ul li::before {
            content: "";
            position: absolute;
            left: -18px;
            top: 12px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
        }
        .article-content ol {
            list-style: decimal;
        }
        .article-content ol li {
            margin-bottom: 8px;
            padding-left: 4px;
        }
        .article-content a {
            color: var(--brand-mid);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .article-content a:hover {
            color: var(--brand-light);
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 32px 0;
            font-size: 15px;
        }
        .article-content table th,
        .article-content table td {
            padding: 12px 16px;
            border: 1px solid var(--border);
            text-align: left;
        }
        .article-content table th {
            background: rgba(27, 35, 33, .04);
            font-weight: 700;
            color: var(--text);
        }
        .article-content table tr:nth-child(2n) {
            background: rgba(27, 35, 33, .02);
        }
        .article-content code {
            background: rgba(27, 35, 33, .06);
            border-radius: 6px;
            padding: 2px 8px;
            font-size: 14px;
            color: var(--brand-mid);
        }
        .article-content pre {
            background: #1B2321;
            color: #F0F2F1;
            border-radius: var(--radius);
            padding: 20px 24px;
            overflow-x: auto;
            margin: 32px 0;
            font-size: 14px;
            line-height: 1.7;
        }
        .article-content pre code {
            background: none;
            color: inherit;
            padding: 0;
            font-size: inherit;
        }
        .article-content hr {
            border: none;
            border-top: 1px solid var(--border);
            margin: 36px 0;
        }

        /* 文章空态 */
        .article-not-found {
            text-align: center;
            padding: 60px 24px;
        }
        .not-found-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(30, 140, 87, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--brand-mid);
            margin: 0 auto 24px;
        }
        .article-not-found h2 {
            font-size: 24px;
            margin-bottom: 12px;
            color: var(--text);
        }
        .article-not-found p {
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        /* ========== 标签区 ========== */
        .article-tags {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 32px;
            margin-top: 40px;
            border-top: 1px solid var(--border);
        }
        .tags-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-right: 4px;
        }
        .tags-label i {
            color: var(--gold);
            margin-right: 4px;
        }
        .article-tag {
            display: inline-flex;
            align-items: center;
            background: rgba(27, 35, 33, .05);
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: var(--radius-tag);
            transition: background .25s, color .25s;
        }
        .article-tag:hover {
            background: rgba(30, 140, 87, .12);
            color: var(--brand-mid);
        }

        /* ========== 上下篇 ========== */
        .article-prev-next {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 920px;
            margin: 0 auto 56px;
        }
        .pn-card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 28px 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(27, 35, 33, .05);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .pn-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: rgba(30, 140, 87, .15);
        }
        .pn-card:active {
            transform: translateY(0);
            box-shadow: var(--shadow-sm);
        }
        .pn-card.next {
            text-align: right;
            align-items: flex-end;
        }
        .pn-label {
            font-size: 13px;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .pn-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.45;
            transition: color .25s;
        }
        .pn-card:hover .pn-title {
            color: var(--brand-mid);
        }

        /* ========== 相关推荐 ========== */
        .related-section {
            max-width: 920px;
            margin: 0 auto;
        }
        .section-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
        }
        .section-heading h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text);
            position: relative;
            padding-left: 16px;
        }
        .section-heading h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 22px;
            border-radius: 4px;
            background: var(--gold-gradient);
        }
        .section-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-mid);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap .25s;
        }
        .section-link:hover {
            gap: 10px;
            color: var(--brand-light);
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .related-card {
            background: var(--card);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(27, 35, 33, .05);
            transition: transform .25s ease, box-shadow .25s ease;
            display: flex;
            flex-direction: column;
        }
        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .related-card-cover {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: var(--brand-deep);
        }
        .related-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }
        .related-card:hover .related-card-cover img {
            transform: scale(1.04);
        }
        .related-card-cover::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11, 59, 46, .35), transparent 50%);
            opacity: 0;
            transition: opacity .3s ease;
        }
        .related-card:hover .related-card-cover::after {
            opacity: 1;
        }
        .related-card-body {
            padding: 20px 24px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .related-card-tag {
            font-size: 12px;
            font-weight: 700;
            color: var(--brand-mid);
            background: rgba(30, 140, 87, .1);
            padding: 4px 12px;
            border-radius: 999px;
            align-self: flex-start;
            letter-spacing: .04em;
        }
        .related-card-title {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.45;
            color: var(--text);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color .25s;
        }
        .related-card:hover .related-card-title {
            color: var(--brand-mid);
        }
        .related-card-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: auto;
        }
        .related-card-meta i {
            font-size: 12px;
        }

        /* ========== 页脚 ========== */
        .footer {
            background: var(--brand-deep);
            color: #B7C7BF;
            padding-top: 72px;
            padding-bottom: 32px;
            font-size: 14px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }
        .footer-brand .logo {
            margin-bottom: 16px;
        }
        .footer-brand .logo-text {
            color: #fff;
        }
        .footer-brand .logo-divider {
            background: rgba(255, 255, 255, .3);
        }
        .footer-brand .logo-sub {
            color: rgba(255, 255, 255, .6);
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .6);
            margin-bottom: 20px;
            max-width: 340px;
        }
        .footer-social {
            display: flex;
            gap: 10px;
        }
        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .7);
            font-size: 16px;
            transition: background .25s, color .25s, transform .25s;
        }
        .footer-social a:hover {
            background: var(--gold);
            color: #fff;
            transform: translateY(-3px);
        }
        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            letter-spacing: .02em;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, .65);
            font-size: 14px;
            transition: color .25s, padding-left .25s;
        }
        .footer-links a:hover {
            color: var(--gold-light);
            padding-left: 4px;
        }
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, .65);
            font-size: 14px;
        }
        .footer-contact-item i {
            width: 18px;
            text-align: center;
            color: var(--gold-light);
            font-size: 14px;
        }
        .footer-bottom {
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: rgba(255, 255, 255, .45);
        }
        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }
        .footer-bottom-links a {
            color: rgba(255, 255, 255, .5);
            transition: color .25s;
        }
        .footer-bottom-links a:hover {
            color: var(--gold-light);
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .container {
                padding-left: 24px;
                padding-right: 24px;
            }
            .nav-menu {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                align-items: flex-start;
                padding: 24px 32px 32px;
                gap: 4px;
                box-shadow: var(--shadow-lg);
                transform: translateY(-8px);
                opacity: 0;
                pointer-events: none;
                transition: opacity .3s ease, transform .3s ease;
                z-index: 80;
                border-bottom: 1px solid var(--border);
            }
            .nav-menu.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .nav-link {
                width: 100%;
                padding: 14px 8px;
                font-size: 18px;
                border-radius: 12px;
            }
            .nav-link::after {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
            .header-actions .btn-ghost {
                display: none;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }
        @media (max-width: 768px) {
            .article-main {
                padding-top: 20px;
                padding-bottom: 64px;
            }
            .article-card {
                padding: 32px 24px;
                border-radius: var(--radius);
            }
            .article-title {
                font-size: 30px;
            }
            .article-content {
                font-size: 16px;
            }
            .related-grid {
                grid-template-columns: 1fr 1fr;
            }
            .article-prev-next {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .pn-card.next {
                text-align: left;
                align-items: flex-start;
            }
            .section-heading h2 {
                font-size: 24px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 32px;
                padding-bottom: 32px;
            }
            .footer {
                padding-top: 48px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .header-inner {
                gap: 12px;
            }
            .logo-sub,
            .logo-divider {
                display: none;
            }
            .logo-text {
                font-size: 17px;
            }
            .logo-icon {
                width: 32px;
                height: 32px;
            }
            .header-actions .btn {
                padding: 0 16px;
                height: 40px;
                font-size: 13px;
            }
            .header-actions .btn-ghost {
                display: none;
            }
            .breadcrumb-current {
                max-width: 180px;
            }
            .article-card {
                padding: 24px 16px;
            }
            .article-title {
                font-size: 24px;
                line-height: 1.35;
            }
            .article-meta {
                gap: 10px;
                font-size: 13px;
            }
            .meta-dot {
                display: none;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
            .article-tags {
                gap: 8px;
            }
            .article-tag {
                padding: 4px 10px;
                font-size: 12px;
            }
            .section-heading {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            .footer-bottom-links {
                justify-content: center;
            }
        }

/* roulang page: category1 */
:root {
    --brand-deep: #0B3B2E;
    --brand-mid: #14633D;
    --brand-light: #1E8C57;
    --gold: #C29A1F;
    --gold-light: #E9CE7A;
    --gold-gradient: linear-gradient(120deg, #E9CE7A 0%, #C29A1F 100%);
    --brand-gradient: linear-gradient(135deg, #0B3B2E 0%, #14633D 55%, #1E8C57 100%);
    --bg: #F7F5F0;
    --card-bg: #FFFFFF;
    --text: #1B2321;
    --text-secondary: #53605B;
    --text-muted: #8A9891;
    --divider: rgba(27, 35, 33, .10);
    --success: #1E8C57;
    --warning: #E6A23C;
    --danger: #E65C4F;
    --info: #2F6FB2;
    --radius-card: 16px;
    --radius-lg: 20px;
    --radius-tag: 8px;
    --shadow-sm: 0 2px 8px rgba(16, 32, 27, .06);
    --shadow-md: 0 8px 24px rgba(16, 32, 27, .08);
    --shadow-lg: 0 24px 64px rgba(16, 32, 27, .14);
    --font-stack: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  }

  *, *::before, *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: var(--font-stack);
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
  }

  img {
    max-width: 100%;
    display: block;
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  }

  button, input {
    font-family: inherit;
    font-size: inherit;
  }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  /* ===== 顶部通告条 ===== */
  .topbar {
    background: var(--warning);
    color: #fff;
    font-size: 13px;
    height: 40px;
    display: flex;
    align-items: center;
  }

  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .topbar-ticker {
    white-space: nowrap;
    overflow: hidden;
    flex: 1;
  }

  .topbar-ticker span {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 18s linear infinite;
  }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }

  .topbar-link {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    flex-shrink: 0;
  }

  .topbar-link:hover {
    color: var(--brand-deep);
  }

  /* ===== 导航 ===== */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--divider);
    transition: box-shadow .3s ease, height .3s ease;
  }

  .header.scrolled {
    box-shadow: var(--shadow-sm);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .logo-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--brand-deep);
    letter-spacing: -.02em;
    line-height: 1.2;
  }

  .logo-divider {
    width: 1px;
    height: 20px;
    background: var(--divider);
  }

  .logo-sub {
    font-size: 13px;
    color: var(--text-secondary);
  }

  .nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
  }

  .nav-link {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.5;
    white-space: nowrap;
  }

  .nav-link:hover {
    color: var(--brand-mid);
    background: rgba(20, 99, 61, .08);
  }

  .nav-link:focus-visible,
  .btn:focus-visible,
  .burger:focus-visible,
  a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  .nav-link.active {
    color: var(--brand-deep);
    background: rgba(20, 99, 61, .12);
    box-shadow: inset 0 0 0 1px rgba(20, 99, 61, .18);
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: all .25s ease;
  }

  .btn-primary {
    background: var(--gold-gradient);
    color: #fff;
    height: 44px;
    padding: 0 28px;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(194, 154, 31, .28);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 8px 20px rgba(194, 154, 31, .35);
  }

  .btn-primary:active {
    transform: translateY(-1px);
    filter: brightness(.98);
    box-shadow: 0 2px 8px rgba(194, 154, 31, .24);
  }

  .btn-ghost {
    background: transparent;
    border: 1px solid rgba(27, 35, 33, .25);
    color: var(--text);
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
  }

  .btn-ghost:hover {
    border-color: var(--brand-mid);
    color: var(--brand-mid);
    background: rgba(20, 99, 61, .04);
    transform: translateY(-2px);
  }

  .btn-ghost:active {
    transform: translateY(0);
  }

  .btn-large {
    height: 54px;
    padding: 0 40px;
    font-size: 16px;
  }

  .burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--divider);
    background: #fff;
    color: var(--brand-deep);
    font-size: 18px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease;
  }

  .burger:hover {
    background: rgba(20, 99, 61, .06);
    border-color: var(--brand-mid);
  }

  .nav-mobile-cta {
    display: none;
  }

  /* ===== 分类页顶部 ===== */
  .category-hero {
    background: var(--bg);
    background-image: linear-gradient(rgba(27, 35, 33, .035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(27, 35, 33, .035) 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 56px 0 56px;
    border-bottom: 1px solid var(--divider);
    position: relative;
    overflow: hidden;
  }

  .category-hero::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(20, 99, 61, .04);
    filter: blur(80px);
    right: -80px;
    top: -80px;
    pointer-events: none;
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .breadcrumb a {
    color: var(--text-secondary);
  }

  .breadcrumb a:hover {
    color: var(--brand-mid);
  }

  .breadcrumb-sep {
    color: var(--text-muted);
  }

  .breadcrumb .current {
    color: var(--text);
    font-weight: 600;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(194, 154, 31, .22);
  }

  .category-hero h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px;
    color: var(--brand-deep);
    letter-spacing: -.02em;
  }

  .category-hero .hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 0 28px;
    line-height: 1.8;
  }

  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-badge {
    background: rgba(27, 35, 33, .04);
    border: 1px solid rgba(27, 35, 33, .08);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .stat-badge strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
  }

  .stat-badge span {
    font-size: 13px;
    color: var(--text-secondary);
  }

  /* ===== 置顶大卡 ===== */
  .featured-section {
    padding: 56px 0 24px;
  }

  .featured-card {
    display: grid;
    grid-template-columns: 5fr 6fr;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: box-shadow .3s ease;
  }

  .featured-card:hover {
    box-shadow: 0 28px 72px rgba(16, 32, 27, .18);
  }

  .featured-img {
    position: relative;
    min-height: 320px;
  }

  .featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }

  .featured-body {
    padding: 44px 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 5px 14px;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 16px;
  }

  .badge-warning {
    background: rgba(230, 164, 60, .14);
    color: #A36A12;
    border: 1px solid rgba(230, 164, 60, .3);
  }

  .featured-body h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--text);
    margin: 0 0 16px;
  }

  .featured-body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin: 0 0 24px;
  }

  .featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
  }

  .featured-meta i {
    margin-right: 6px;
    color: var(--gold);
  }

  /* ===== 近期活动安排 ===== */
  .schedule-section {
    padding: 56px 0 64px;
  }

  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
  }

  .section-head h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -.02em;
  }

  .section-head p {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--text-muted);
  }

  .section-head .section-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-mid);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .section-head .section-link:hover {
    color: var(--gold);
  }

  .schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .schedule-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 28px 28px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
    overflow: hidden;
  }

  .schedule-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--gold-gradient);
  }

  .schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .schedule-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
  }

  .schedule-date {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .schedule-date strong {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-deep);
    font-variant-numeric: tabular-nums;
    line-height: 1;
  }

  .schedule-date span {
    font-size: 13px;
    color: var(--text-muted);
  }

  .schedule-status {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-mid);
    background: rgba(30, 140, 87, .1);
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .schedule-status.hot {
    color: #C0392B;
    background: rgba(230, 92, 79, .1);
  }

  .schedule-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.45;
  }

  .schedule-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0 0 18px;
  }

  .schedule-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .schedule-time {
    font-size: 13px;
    color: var(--text-muted);
  }

  .schedule-time i {
    margin-right: 6px;
    color: var(--gold);
  }

  .schedule-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-mid);
  }

  .schedule-link:hover {
    color: var(--gold);
  }

  /* ===== 内容特色 ===== */
  .feature-section {
    padding: 64px 0;
    background: #fff;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature-item {
    background: linear-gradient(135deg, #FDFCF9 0%, #F7F5F0 100%);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(11, 59, 46, .18);
  }

  .feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--text);
  }

  .feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
  }

  /* ===== 回放精选 ===== */
  .replay-section {
    padding: 64px 0 72px;
  }

  .replay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .replay-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .replay-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .replay-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--brand-deep);
  }

  .replay-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }

  .replay-card:hover .replay-thumb img {
    transform: scale(1.04);
  }

  .replay-thumb::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 59, 46, .55) 100%);
  }

  .replay-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    letter-spacing: .04em;
  }

  .replay-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(11, 59, 46, .88);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: .02em;
  }

  .replay-card-body {
    padding: 20px 22px 22px;
  }

  .replay-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.45;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
  }

  .replay-card-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .replay-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
  }

  .replay-meta i {
    margin-right: 4px;
    color: var(--gold);
  }

  .replay-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-mid);
  }

  .replay-btn:hover {
    color: var(--gold);
    gap: 10px;
  }

  /* ===== FAQ ===== */
  .faq-section {
    padding: 64px 0;
    background: #fff;
    border-top: 1px solid var(--divider);
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start;
  }

  .faq-head {
    position: sticky;
    top: 96px;
  }

  .faq-head h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 16px;
    line-height: 1.3;
  }

  .faq-head p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.75;
  }

  .faq-list {
    border-top: 1px solid var(--divider);
  }

  .faq-item {
    border-bottom: 1px solid var(--divider);
  }

  .faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 0;
    cursor: pointer;
    text-align: left;
    background: transparent;
    border: none;
    width: 100%;
    transition: background .2s ease;
  }

  .faq-q:hover .faq-q-text {
    color: var(--brand-mid);
  }

  .faq-q-mark {
    width: 26px;
    height: 26px;
    background: var(--gold);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .faq-q-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    flex: 1;
    line-height: 1.5;
    transition: color .2s ease;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(27, 35, 33, .05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 14px;
    transition: transform .3s ease, background .3s ease, color .3s ease;
    flex-shrink: 0;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--brand-mid);
    color: #fff;
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }

  .faq-a p {
    padding: 0 0 22px 40px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.85;
  }

  /* ===== CTA 横幅B ===== */
  .cta-section {
    padding: 72px 0 80px;
  }

  .cta-banner-b {
    position: relative;
    background: var(--brand-gradient);
    border-radius: 24px;
    padding: 56px 48px;
    overflow: hidden;
    color: #fff;
  }

  .cta-banner-b::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(201, 162, 39, .22);
    filter: blur(120px);
    left: -140px;
    bottom: -180px;
    pointer-events: none;
  }

  .cta-banner-b::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(30, 140, 87, .25);
    filter: blur(80px);
    top: -80px;
    right: 80px;
    pointer-events: none;
  }

  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
  }

  .cta-content h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 12px;
    letter-spacing: -.01em;
  }

  .cta-content p {
    font-size: 15px;
    color: #D5E0DA;
    line-height: 1.75;
    margin: 0 0 28px;
  }

  .cta-content .btn-primary {
    box-shadow: 0 8px 24px rgba(194, 154, 31, .32);
  }

  /* ===== 页脚 ===== */
  .footer {
    background: var(--brand-deep);
    color: #B7C7BF;
    padding: 64px 0 24px;
    margin-top: 0;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .footer-brand .logo {
    margin-bottom: 16px;
  }

  .footer-brand .logo-text {
    color: #fff;
  }

  .footer-brand .logo-sub {
    color: #B7C7BF;
  }

  .footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #B7C7BF;
    margin: 0 0 20px;
    max-width: 360px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background .25s ease, transform .25s ease, color .25s ease;
  }

  .footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
    color: #fff;
  }

  .footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 14px;
    color: #B7C7BF;
    line-height: 1.6;
  }

  .footer-links a:hover {
    color: var(--gold-light);
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-item {
    font-size: 14px;
    color: #B7C7BF;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.6;
  }

  .footer-contact-item i {
    color: var(--gold-light);
    width: 16px;
    text-align: center;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    font-size: 13px;
    color: #8FA69B;
  }

  .footer-bottom-links {
    display: flex;
    gap: 20px;
  }

  .footer-bottom-links a {
    color: #8FA69B;
  }

  .footer-bottom-links a:hover {
    color: var(--gold-light);
  }

  /* ===== 响应式 ===== */
  @media (max-width: 1023px) {
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(80vw, 340px);
      height: 100vh;
      background: #fff;
      z-index: 200;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 80px 36px 48px;
      box-shadow: var(--shadow-lg);
      transition: right .4s ease;
      gap: 6px;
    }

    .nav-menu.open {
      right: 0;
    }

    .nav-menu .nav-link {
      width: 100%;
      padding: 14px 0;
      font-size: 20px;
      border-radius: 0;
      border-bottom: 1px solid var(--divider);
      color: var(--text);
    }

    .nav-menu .nav-link.active {
      background: transparent;
      box-shadow: none;
      color: var(--brand-mid);
      border-bottom-color: var(--gold);
    }

    .nav-mobile-cta {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      margin-top: 28px;
    }

    .nav-mobile-cta .btn {
      width: 100%;
    }

    .header-cta .btn {
      display: none;
    }

    .burger {
      display: inline-flex;
    }

    .header-inner {
      height: 64px;
    }

    .category-hero h1 {
      font-size: 32px;
    }

    .featured-card {
      grid-template-columns: 1fr;
    }

    .featured-img {
      aspect-ratio: 16 / 9;
      min-height: 0;
    }

    .featured-img img {
      position: static;
      height: 100%;
    }

    .featured-body {
      padding: 32px 28px;
    }

    .schedule-grid {
      grid-template-columns: 1fr 1fr;
    }

    .feature-grid {
      grid-template-columns: 1fr 1fr;
    }

    .replay-grid {
      grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .faq-head {
      position: static;
    }

    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
  }

  @media (max-width: 767px) {
    .container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .topbar {
      font-size: 12px;
    }

    .topbar-link {
      display: none;
    }

    .topbar-ticker span {
      padding-left: 40%;
    }

    .logo-text {
      font-size: 21px;
    }

    .logo-sub {
      display: none;
    }

    .logo-divider {
      display: none;
    }

    .category-hero {
      padding: 40px 0 44px;
    }

    .category-hero h1 {
      font-size: 28px;
    }

    .category-hero .hero-desc {
      font-size: 15px;
    }

    .hero-stats {
      gap: 10px;
    }

    .stat-badge {
      padding: 10px 14px;
      flex-direction: column;
      gap: 0;
      align-items: flex-start;
    }

    .stat-badge strong {
      font-size: 24px;
    }

    .stat-badge span {
      font-size: 12px;
    }

    .featured-body h2 {
      font-size: 22px;
    }

    .schedule-grid {
      grid-template-columns: 1fr;
    }

    .feature-grid {
      grid-template-columns: 1fr;
    }

    .replay-grid {
      grid-template-columns: 1fr;
    }

    .section-head {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .section-head h2 {
      font-size: 24px;
    }

    .faq-q-text {
      font-size: 15px;
    }

    .faq-a p {
      padding-left: 0;
    }

    .cta-banner-b {
      padding: 40px 24px;
    }

    .cta-content h2 {
      font-size: 22px;
    }

    .cta-content .btn-large {
      width: 100%;
    }

    .footer-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 480px) {
    .header-cta .btn {
      display: none;
    }

    .burger {
      display: inline-flex;
    }

    .hero-stats {
      flex-direction: column;
    }

    .stat-badge {
      flex-direction: row;
      align-items: baseline;
    }

    .featured-meta {
      flex-direction: column;
      gap: 8px;
    }

    .schedule-card {
      padding: 22px 20px;
    }

    .replay-card-body {
      padding: 18px 18px 20px;
    }

    .footer-bottom-links {
      flex-wrap: wrap;
      gap: 12px;
    }
  }

/* roulang page: category2 */
:root {
  --brand-deep: #0B3B2E;
  --brand-mid: #14633D;
  --brand-light: #1E8C57;
  --brand-gradient: linear-gradient(135deg, #0B3B2E 0%, #14633D 55%, #1E8C57 100%);
  --gold: #C29A1F;
  --gold-light: #E9CE7A;
  --gold-gradient: linear-gradient(120deg, #E9CE7A 0%, #C29A1F 100%);
  --bg-page: #F7F5F0;
  --bg-card: #FFFFFF;
  --text-main: #1B2321;
  --text-sub: #53605B;
  --text-weak: #8A9891;
  --text-on-dark: #FFFFFF;
  --text-sub-dark: #D5E0DA;
  --line-light: rgba(27,35,33,0.10);
  --line-dark: rgba(255,255,255,0.12);
  --success: #1E8C57;
  --warning: #E6A23C;
  --danger: #E65C4F;
  --info: #2F6FB2;
  --radius-card: 16px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --radius-input: 12px;
  --radius-tag: 8px;
  --shadow-sm: 0 2px 8px rgba(16,32,27,.06);
  --shadow-md: 0 8px 24px rgba(16,32,27,.08);
  --shadow-lg: 0 24px 64px rgba(16,32,27,.14);
  --font-stack: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-stack);
  background: var(--bg-page);
  color: var(--text-main);
  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(--brand-mid);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
a:hover {
  color: var(--brand-light);
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(30,140,87,.35);
  outline-offset: 2px;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input {
  font-family: inherit;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
  height: 72px;
  display: flex;
  align-items: center;
  transition: height .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  height: 64px;
  box-shadow: 0 4px 20px rgba(16,32,27,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}
.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--brand-deep);
  letter-spacing: .01em;
  white-space: nowrap;
}
.logo-divider {
  width: 1px;
  height: 20px;
  background: rgba(27,35,33,.15);
  flex-shrink: 0;
}
.logo-sub {
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 500;
  white-space: nowrap;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover {
  color: var(--brand-mid);
  background: rgba(27,35,33,.04);
}
.nav-link.active {
  color: var(--gold);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all .25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  font-size: 15px;
  padding: 0 24px;
  height: 44px;
  line-height: 1;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--gold-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(194,154,31,.28);
}
.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194,154,31,.35);
  color: #fff;
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-outline {
  background: transparent;
  border-color: rgba(27,35,33,.25);
  color: var(--text-main);
}
.btn-outline:hover {
  border-color: var(--brand-mid);
  color: var(--brand-mid);
  background: rgba(27,35,33,.02);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: var(--text-on-dark);
}
.btn-outline-light:hover {
  border-color: var(--text-on-dark);
  color: var(--text-on-dark);
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}
.btn-lg {
  height: 54px;
  padding: 0 36px;
  font-size: 17px;
}
.btn-ghost-gold {
  background: transparent;
  border: 1px solid rgba(201,162,39,.45);
  color: var(--gold);
}
.btn-ghost-gold:hover {
  background: rgba(201,162,39,.08);
  border-color: var(--gold);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(27,35,33,.04);
  color: var(--text-main);
  font-size: 20px;
  transition: background .2s ease;
}
.nav-toggle:hover {
  background: rgba(27,35,33,.08);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-page);
  z-index: 200;
  padding: 24px 16px 32px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-close-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 10px;
  background: rgba(27,35,33,.05);
  color: var(--text-main);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.mobile-menu-nav a {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  padding: 14px 8px;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-nav a.active {
  color: var(--gold);
}
.mobile-menu-nav a i {
  font-size: 16px;
  color: var(--text-weak);
}
.mobile-menu-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-cta .btn {
  width: 100%;
}
/* ---------- Page Hero (Category) ---------- */
.page-hero {
  padding: 72px 0 56px;
  background: var(--bg-page);
  background-image: radial-gradient(circle at 85% 10%, rgba(30,140,87,.08) 0%, transparent 40%), radial-gradient(circle at 10% 90%, rgba(201,162,39,.05) 0%, transparent 30%);
  border-bottom: 1px solid var(--line-light);
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(27,35,33,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(27,35,33,.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-deep);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: .01em;
}
.page-hero p {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.8;
  max-width: 700px;
}
.page-hero-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-tag);
  background: rgba(27,35,33,.05);
  color: var(--text-sub);
  border: 1px solid rgba(27,35,33,.06);
}
.tag-gold {
  background: rgba(201,162,39,.10);
  color: var(--gold);
  border-color: rgba(201,162,39,.20);
}
/* ---------- Featured Card ---------- */
.featured-section {
  padding: 64px 0 32px;
}
.featured-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  transition: box-shadow .3s ease, transform .3s ease;
  border: 1px solid rgba(27,35,33,.04);
}
.featured-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.featured-media {
  position: relative;
  min-height: 320px;
}
.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,59,46,.45) 100%);
}
.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(194,154,31,.3);
  letter-spacing: .03em;
}
.featured-body {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-body h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-deep);
  line-height: 1.35;
  margin-bottom: 14px;
}
.featured-body p {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-weak);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.featured-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.featured-meta i {
  color: var(--gold);
}
.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand-mid);
  font-size: 15px;
  transition: gap .2s ease;
}
.featured-link:hover {
  gap: 12px;
  color: var(--brand-deep);
}
.featured-link i {
  font-size: 13px;
}
/* ---------- Guide Cards Grid ---------- */
.guide-section {
  padding: 40px 0 80px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.section-head h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-deep);
  line-height: 1.3;
}
.section-head h2 span {
  color: var(--gold);
}
.section-head-desc {
  font-size: 14px;
  color: var(--text-sub);
  max-width: 420px;
  text-align: right;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guide-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,35,33,.04);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.guide-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--brand-deep);
}
.guide-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.guide-card:hover .guide-card-media img {
  transform: scale(1.04);
}
.guide-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,59,46,0) 60%, rgba(11,59,46,.35) 100%);
}
.guide-card-time {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}
.guide-card-time i {
  color: var(--gold);
  font-size: 11px;
}
.guide-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(27,35,33,.75);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: .02em;
}
.guide-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.guide-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: .01em;
  transition: color .2s ease;
}
.guide-card:hover .guide-card-body h3 {
  color: var(--brand-mid);
}
.guide-card-body p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.guide-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  padding-top: 16px;
}
.guide-card-footer .read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-mid);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.guide-card:hover .guide-card-footer .read-more {
  gap: 10px;
}
.guide-card-footer .read-more i {
  font-size: 12px;
}
.guide-card-footer .stats {
  font-size: 13px;
  color: var(--text-weak);
  display: flex;
  align-items: center;
  gap: 5px;
}
/* ---------- Process / Steps Section ---------- */
.process-section {
  padding: 80px 0;
  background: var(--brand-deep);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201,162,39,.08);
  filter: blur(120px);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.process-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(30,140,87,.12);
  filter: blur(100px);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}
.process-inner {
  position: relative;
  z-index: 1;
}
.process-head {
  text-align: center;
  margin-bottom: 56px;
}
.process-head .section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.process-head h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-on-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.process-head p {
  font-size: 15px;
  color: var(--text-sub-dark);
  max-width: 580px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step-counter;
}
.process-step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.process-step:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
  border-color: rgba(201,162,39,.30);
}
.step-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 12px;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(194,154,31,.3);
}
.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px;
  color: var(--text-sub-dark);
  line-height: 1.7;
}
.step-arrow {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  font-size: 18px;
  color: rgba(233,206,122,.5);
  z-index: 2;
}
/* ---------- Guide Notice / Tip Block ---------- */
.notice-section {
  padding: 72px 0;
  background: var(--bg-page);
}
.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.notice-item {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,35,33,.04);
  border-top: 3px solid var(--gold);
  transition: transform .25s ease, box-shadow .25s ease;
}
.notice-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.notice-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(30,140,87,.10);
  color: var(--brand-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.notice-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}
.notice-item p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.75;
}
.notice-item ul {
  margin-top: 10px;
  list-style: none;
  padding: 0;
}
.notice-item ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
}
.notice-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-light);
}
/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 80px 0;
  background: var(--bg-page);
  border-top: 1px solid var(--line-light);
}
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
}
.faq-title-col h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-deep);
  margin-bottom: 16px;
  line-height: 1.25;
}
.faq-title-col p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.75;
  max-width: 280px;
}
.faq-list {
  border-top: 1px solid var(--line-light);
}
.faq-item {
  border-bottom: 1px solid var(--line-light);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  transition: color .2s ease;
  cursor: pointer;
}
.faq-question:hover {
  color: var(--brand-mid);
}
.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-q-text {
  flex: 1;
}
.faq-toggle-icon {
  font-size: 16px;
  color: var(--text-weak);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--brand-mid);
}
.faq-answer {
  display: none;
  padding: 0 0 20px 42px;
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.85;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn .35s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ---------- CTA Banner (Variant B) ---------- */
.cta-banner {
  padding: 72px 0;
  background: var(--brand-deep);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(201,162,39,.13);
  filter: blur(140px);
  bottom: -160px;
  left: -100px;
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 12% 85%, rgba(201,162,39,.06) 0%, transparent 40%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
.cta-copy h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-on-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}
.cta-copy p {
  font-size: 15px;
  color: var(--text-sub-dark);
  line-height: 1.8;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.cta-actions .btn {
  min-width: 220px;
}
.cta-note {
  font-size: 13px;
  color: var(--text-sub-dark);
  opacity: .75;
  text-align: center;
}
/* ---------- Footer ---------- */
.footer {
  background: var(--brand-deep);
  padding: 72px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 40px;
}
.footer-brand {
  margin-bottom: 0;
}
.footer-brand .logo {
  margin-bottom: 18px;
}
.footer-brand .logo-text {
  color: #fff;
}
.footer-brand .logo-sub {
  color: #B7C7BF;
}
.footer-desc {
  font-size: 14px;
  color: #B7C7BF;
  line-height: 1.8;
  margin-bottom: 20px;
  margin-top: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B7C7BF;
  font-size: 16px;
  transition: all .25s ease;
}
.footer-social a:hover {
  background: rgba(255,255,255,.08);
  color: var(--gold-light);
  border-color: rgba(201,162,39,.4);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .03em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: #B7C7BF;
  transition: color .2s ease, padding-left .2s ease;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  font-size: 14px;
  color: #B7C7BF;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-item i {
  color: var(--gold-light);
  width: 16px;
  text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .2s ease;
}
.footer-bottom-links a:hover {
  color: var(--gold-light);
}
/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .nav-menu {
    display: none;
  }
  .header-actions .btn-outline {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header-inner {
    gap: 12px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .notice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .step-arrow {
    display: none;
  }
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-media {
    min-height: 260px;
    position: relative;
  }
  .featured-media img {
    position: absolute;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-actions {
    align-items: flex-start;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-title-col p {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header {
    height: 64px;
  }
  .logo-text {
    font-size: 19px;
  }
  .logo-sub, .logo-divider {
    display: none;
  }
  .header-actions .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .page-hero {
    padding: 48px 0 40px;
  }
  .page-hero h1 {
    font-size: 28px;
  }
  .page-hero p {
    font-size: 15px;
  }
  .featured-section {
    padding: 40px 0 24px;
  }
  .featured-body {
    padding: 24px;
  }
  .featured-body h2 {
    font-size: 21px;
  }
  .featured-meta {
    gap: 10px;
    font-size: 12px;
  }
  .guide-section {
    padding: 32px 0 56px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .section-head h2 {
    font-size: 24px;
  }
  .section-head-desc {
    text-align: left;
    font-size: 13px;
  }
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .guide-card-body {
    padding: 20px;
  }
  .guide-card-body h3 {
    font-size: 17px;
  }
  .guide-card-body p {
    font-size: 14px;
  }
  .process-section {
    padding: 56px 0;
  }
  .process-head {
    margin-bottom: 36px;
  }
  .process-head h2 {
    font-size: 24px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .process-step {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .step-num {
    margin: 0;
    flex-shrink: 0;
  }
  .process-step h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .process-step p {
    font-size: 13px;
  }
  .notice-section {
    padding: 48px 0;
  }
  .notice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .notice-item {
    padding: 24px;
  }
  .faq-section {
    padding: 48px 0;
  }
  .faq-title-col h2 {
    font-size: 24px;
  }
  .faq-q-text {
    font-size: 15px;
  }
  .faq-answer {
    padding-left: 0;
    padding-top: 0;
    font-size: 14px;
  }
  .faq-question {
    padding: 16px 0;
  }
  .cta-banner {
    padding: 48px 0;
  }
  .cta-copy h2 {
    font-size: 23px;
  }
  .cta-copy p {
    font-size: 14px;
  }
  .cta-actions {
    align-items: stretch;
  }
  .cta-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .footer {
    padding: 48px 0 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-links {
    gap: 14px;
  }
}
@media (max-width: 479px) {
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  .logo-icon svg {
    width: 32px;
    height: 32px;
  }
  .logo-text {
    font-size: 18px;
  }
  .page-hero h1 {
    font-size: 25px;
  }
  .page-hero-tags .tag {
    font-size: 12px;
    padding: 4px 10px;
  }
  .featured-media {
    min-height: 200px;
  }
  .guide-card-media {
    aspect-ratio: 16 / 11;
  }
  .faq-layout {
    gap: 24px;
  }
  .footer-inner {
    gap: 24px;
  }
}

/* roulang page: category3 */
:root {
  --brand-deep: #0B3B2E;
  --brand-mid: #14633D;
  --brand-light: #1E8C57;
  --brand-gradient: linear-gradient(135deg, #0B3B2E 0%, #14633D 55%, #1E8C57 100%);
  --gold: #C29A1F;
  --gold-light: #E9CE7A;
  --gold-gradient: linear-gradient(120deg, #E9CE7A 0%, #C29A1F 100%);
  --bg: #F7F5F0;
  --card-bg: #FFFFFF;
  --text: #1B2321;
  --text-secondary: #53605B;
  --text-muted: #8A9891;
  --dark-text-secondary: #D5E0DA;
  --border: rgba(27,35,33,0.10);
  --success: #1E8C57;
  --warning: #E6A23C;
  --danger: #E65C4F;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(16,32,27,.06);
  --shadow-md: 0 8px 24px rgba(16,32,27,.08);
  --shadow-lg: 0 24px 64px rgba(16,32,27,.14);
  --container: 1240px;
  --space-section: 96px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--brand-mid);
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
a:hover {
  color: var(--brand-deep);
}
button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: transparent;
}
input {
  font-family: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(16,32,27,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  transition: height .25s ease;
}
.site-header.scrolled .header-inner {
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(27,35,33,.12);
}
.logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-deep);
  letter-spacing: -0.02em;
}
.logo-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}
.logo-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-link {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 4px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover {
  color: var(--brand-deep);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--brand-deep);
}
.nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  height: 44px;
  padding: 0 24px;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 3px solid rgba(194,154,31,.4);
  outline-offset: 2px;
}
.btn-gold {
  background: var(--gold-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(194,154,31,.24);
  border: none;
}
.btn-gold:hover {
  color: #fff;
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(194,154,31,.32);
}
.btn-ghost {
  background: transparent;
  color: var(--brand-mid);
  border: 1.5px solid rgba(27,110,76,.3);
}
.btn-ghost:hover {
  border-color: var(--brand-mid);
  background: rgba(30,140,87,.06);
  color: var(--brand-deep);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(27,35,33,.22);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--brand-mid);
  background: rgba(30,140,87,.06);
  color: var(--brand-mid);
}
.btn-outline-green {
  background: transparent;
  border: 1.5px solid var(--brand-mid);
  color: var(--brand-mid);
}
.btn-outline-green:hover {
  background: var(--brand-mid);
  color: #fff;
}
.btn-ghost-dark {
  background: transparent;
  border: 1.5px solid rgba(11,59,46,.28);
  color: var(--brand-deep);
}
.btn-ghost-dark:hover {
  border-color: var(--brand-deep);
  background: rgba(11,59,46,.05);
  color: var(--brand-deep);
}
.btn-sm {
  height: 36px;
  padding: 0 18px;
  font-size: 13px;
}
.btn-lg {
  height: 54px;
  padding: 0 36px;
  font-size: 16px;
  min-width: 180px;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.nav-menu-cta {
  display: none;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(27,35,33,.05);
  z-index: 110;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle:hover {
  background: rgba(27,35,33,.08);
}

/* Page Hero */
.page-hero {
  background-color: #F3F0E8;
  background-image: radial-gradient(rgba(27,35,33,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.page-hero-inner {
  max-width: 800px;
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.page-hero-desc {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
}
.page-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Featured Card */
.featured-section {
  padding: var(--space-section) 0 0;
}
.featured-card {
  display: grid;
  grid-template-columns: 7fr 5fr;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.featured-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.featured-media {
  position: relative;
  min-height: 320px;
}
.featured-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(11,59,46,.85);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.featured-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.featured-time {
  font-size: 13px;
  color: var(--text-muted);
}
.featured-body h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
}
.featured-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Tag */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(27,35,33,.06);
  color: var(--text-secondary);
  padding: 5px 10px;
  border-radius: 8px;
  line-height: 1.4;
}
.tag-gold {
  background: rgba(194,154,31,.14);
  color: #8A7214;
}
.tag-green {
  background: rgba(30,140,87,.14);
  color: var(--brand-mid);
}

/* Stats Band */
.stats-band {
  margin-top: var(--space-section);
  padding: 80px 0;
  background-image: linear-gradient(135deg, rgba(11,59,46,.96) 0%, rgba(20,99,61,.93) 55%, rgba(30,140,87,.9) 100%), url('/assets/images/backpic/back-1.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(233,206,122,.22), transparent 65%);
  filter: blur(60px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.stats-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: background .25s ease, transform .25s ease;
}
.stats-item:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.stats-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.stats-num span {
  font-size: 18px;
  margin-left: 2px;
}
.stats-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--dark-text-secondary);
  letter-spacing: 0.04em;
}

/* Section Head */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-sub {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-head p {
  max-width: 420px;
  color: var(--text-secondary);
  font-size: 15px;
}

/* Timeline */
.timeline-section {
  padding: var(--space-section) 0 0;
}
.timeline-list {
  display: flex;
  flex-direction: column;
}
.timeline-item {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s ease, padding .2s ease;
}
.timeline-item:first-child {
  border-top: 1px solid var(--border);
}
.timeline-item:hover {
  background: rgba(27,35,33,.03);
  padding-left: 16px;
  padding-right: 16px;
}
.timeline-date {
  min-width: 76px;
  text-align: center;
  border-right: 2px solid var(--brand-light);
  padding-right: 20px;
}
.tl-month {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.tl-day {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-mid);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.timeline-main {
  flex: 1;
  min-width: 0;
}
.timeline-main h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.timeline-main p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.timeline-side {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Replay Grid */
.replay-section {
  padding: var(--space-section) 0 0;
}
.replay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.replay-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.replay-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.replay-card:hover .replay-play {
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 1;
}
.replay-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--brand-deep);
}
.replay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.replay-card:hover .replay-media img {
  transform: scale(1.04);
}
.replay-duration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(11,59,46,.82);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  padding: 4px 8px;
  font-variant-numeric: tabular-nums;
}
.replay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--brand-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: transform .25s ease, opacity .25s ease;
  box-shadow: 0 4px 16px rgba(11,59,46,.3);
}
.replay-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.replay-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.replay-meta > span:last-child {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}
.replay-body h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 6px;
}
.replay-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.section-footer-link {
  text-align: center;
  margin-top: 36px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand-mid);
}
.text-link i {
  transition: transform .25s ease;
}
.text-link:hover {
  color: var(--brand-deep);
}
.text-link:hover i {
  transform: translateX(4px);
}

/* CTA Banner */
.cta-banner {
  margin-top: var(--space-section);
}
.cta-banner-inner {
  position: relative;
  background: linear-gradient(135deg, #0B3B2E 0%, #14633D 55%, #1E8C57 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-banner-inner::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(233,206,122,.28), transparent 65%);
  filter: blur(60px);
}
.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}
.cta-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  background: rgba(255,255,255,.12);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.cta-banner h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--dark-text-secondary);
  font-size: 15px;
  line-height: 1.7;
}
.cta-banner .btn-gold {
  position: relative;
  z-index: 1;
}

/* FAQ */
.faq-section {
  padding: var(--space-section) 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
}
.faq-side h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-deep);
  margin-bottom: 12px;
}
.faq-side p {
  font-size: 14px;
  color: var(--text-secondary);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background .2s ease;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: color .2s ease;
}
.faq-question:hover {
  color: var(--brand-mid);
}
.faq-q {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 6px;
}
.faq-icon {
  margin-left: auto;
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--brand-mid);
  border-radius: 2px;
  transition: transform .25s ease;
}
.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 9px;
  left: 3px;
}
.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 3px;
  left: 9px;
}
.faq-item.open .faq-icon::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding-left: 36px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  padding-bottom: 20px;
}

/* Footer */
.footer {
  background: var(--brand-deep);
  color: #fff;
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer .logo-text {
  color: #fff;
}
.footer .logo-sub {
  color: #B7C7BF;
}
.footer-desc {
  margin-top: 20px;
  font-size: 14px;
  color: #B7C7BF;
  line-height: 1.8;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #D5E0DA;
  font-size: 15px;
  transition: background .25s ease, color .25s ease;
}
.footer-social a:hover {
  background: var(--gold);
  color: #fff;
}
.footer h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #B7C7BF;
  font-size: 14px;
  line-height: 1.4;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #B7C7BF;
}
.footer-contact-item i {
  color: var(--gold-light);
  width: 16px;
  text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #8FA299;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-bottom-links a {
  color: #8FA299;
  font-size: 13px;
}
.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* Responsive */
@media (max-width: 1023px) {
  .header-actions {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(380px, 86vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 96px 32px 32px;
    box-shadow: -8px 0 32px rgba(16,32,27,.14);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 100;
    overflow-y: auto;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-link {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-link::after {
    display: none;
  }
  .nav-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
  }
  .nav-menu-cta .btn {
    width: 100%;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-media {
    min-height: 240px;
  }
  .replay-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  :root {
    --space-section: 64px;
  }
  .page-hero {
    padding: 56px 0;
  }
  .page-hero h1 {
    font-size: 30px;
  }
  .section-head h2,
  .faq-side h2 {
    font-size: 24px;
  }
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
  }
  .timeline-date {
    border-right: none;
    border-bottom: 2px solid var(--brand-light);
    padding-right: 0;
    padding-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
    text-align: left;
  }
  .tl-month {
    font-size: 13px;
  }
  .tl-day {
    font-size: 24px;
  }
  .timeline-side {
    align-self: flex-start;
  }
  .cta-banner-inner {
    padding: 40px 24px;
  }
  .stats-num {
    font-size: 32px;
  }
}

@media (max-width: 520px) {
  .replay-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-actions .btn {
    width: 100%;
  }
  .featured-body {
    padding: 24px;
  }
  .featured-body h2 {
    font-size: 22px;
  }
  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-banner .btn-lg {
    width: 100%;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
