/* roulang page: index */
:root{
  --ac-red:#C8102E;
  --ac-red-dark:#A30D25;
  --ac-navy:#16213E;
  --ac-dark:#1A1A2E;
  --ac-gold:#D4AF37;
  --ac-bg:#FAFAF8;
  --ac-white:#FFFFFF;
  --ac-text:#2D2D32;
  --ac-muted:#7A7A85;
  --ac-border:#E8E4DE;
  --ac-radius:18px;
  --ac-radius-sm:10px;
  --ac-shadow:0 10px 40px rgba(0,0,0,0.07);
  --ac-shadow-hover:0 18px 50px rgba(200,16,46,0.12);
  --ac-space:120px;
  --ac-font:"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(--ac-font);background:var(--ac-bg);color:var(--ac-text);line-height:1.7;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
input,select,textarea{font-family:inherit}
.container{max-width:1280px;margin:0 auto;padding:0 28px}
.section-title{font-size:2rem;font-weight:800;color:var(--ac-dark);letter-spacing:-0.02em;margin-bottom:12px}
.section-title .dot{color:var(--ac-red)}
.section-sub{color:var(--ac-muted);font-size:1.05rem;max-width:680px;margin-bottom:48px}
.text-center{text-align:center}
/* ===== Header/Nav ===== */
.site-header{background:rgba(255,255,255,0.97);backdrop-filter:blur(14px);border-bottom:1px solid var(--ac-border);position:sticky;top:0;z-index:100}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:76px}
.brand-logo{display:flex;flex-direction:column;line-height:1.1}
.brand-logo .logo-main{font-size:1.3rem;font-weight:900;color:var(--ac-dark);letter-spacing:0.02em}
.brand-logo .logo-main span{color:var(--ac-red)}
.brand-logo .logo-sub{font-size:0.72rem;color:var(--ac-muted);letter-spacing:0.18em;font-weight:500}
.main-nav{display:flex;align-items:center;gap:36px}
.main-nav a{font-size:0.95rem;font-weight:500;color:var(--ac-text);position:relative;padding:8px 2px;transition:color 0.25s}
.main-nav a::after{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--ac-red);transition:width 0.3s ease}
.main-nav a:hover{color:var(--ac-red)}
.main-nav a:hover::after,.main-nav a.active::after{width:100%}
.main-nav a.active{color:var(--ac-red);font-weight:700}
.nav-toggle{display:none;font-size:24px;color:var(--ac-dark);cursor:pointer;z-index:110}
/* Mobile nav */
@media(max-width:900px){
  .nav-toggle{display:block}
  .main-nav{position:fixed;top:0;right:-100%;width:290px;height:100vh;background:var(--ac-white);flex-direction:column;justify-content:flex-start;padding:96px 30px 30px;gap:28px;box-shadow:-10px 0 40px rgba(0,0,0,0.1);transition:right 0.35s cubic-bezier(0.22,1,0.36,1)}
  .main-nav.open{right:0}
  .main-nav a{font-size:1.15rem;padding:8px 0;border-bottom:1px solid #f0ece7;width:100%}
  .main-nav a::after{display:none}
}
/* ===== Hero ===== */
.hero-section{position:relative;background:linear-gradient(135deg,rgba(22,33,62,0.92) 0%,rgba(10,12,24,0.82) 100%),url('/assets/images/backpic/back-1.png') center/cover no-repeat;padding:140px 0 100px;color:var(--ac-white);overflow:hidden}
.hero-section::before{content:"";position:absolute;top:-40%;right:-15%;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(200,16,46,0.22) 0%,transparent 70%)}
.hero-section::after{content:"";position:absolute;bottom:-30%;left:-10%;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(212,175,55,0.14) 0%,transparent 70%)}
.hero-inner{position:relative;z-index:2}
.hero-tag{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.2);border-radius:999px;padding:8px 20px;font-size:0.85rem;letter-spacing:0.1em;margin-bottom:30px;backdrop-filter:blur(6px)}
.hero-tag i{color:var(--ac-gold)}
.hero-title{font-size:3.4rem;font-weight:900;line-height:1.2;letter-spacing:-0.03em;margin-bottom:22px;max-width:760px}
.hero-title .accent{color:var(--ac-gold);position:relative}
.hero-sub{font-size:1.15rem;line-height:1.8;color:rgba(255,255,255,0.85);max-width:640px;margin-bottom:42px}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;font-size:0.95rem;font-weight:600;padding:14px 32px;border-radius:999px;transition:all 0.3s ease;text-decoration:none}
.btn-primary{background:var(--ac-red);color:var(--ac-white);box-shadow:0 8px 24px rgba(200,16,46,0.3)}
.btn-primary:hover{background:var(--ac-red-dark);transform:translateY(-2px);box-shadow:0 12px 32px rgba(200,16,46,0.4)}
.btn-outline{border:1.5px solid rgba(255,255,255,0.5);color:var(--ac-white);background:rgba(255,255,255,0.06)}
.btn-outline:hover{border-color:var(--ac-white);background:rgba(255,255,255,0.12);transform:translateY(-2px)}
.btn-gold{background:var(--ac-gold);color:var(--ac-dark);box-shadow:0 8px 24px rgba(212,175,55,0.3)}
.btn-gold:hover{background:#c5a02e;transform:translateY(-2px)}
.hero-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:70px;padding-top:50px;border-top:1px solid rgba(255,255,255,0.12)}
.hero-stat{text-align:left}
.hero-stat .num{font-size:2.2rem;font-weight:900;color:var(--ac-white);line-height:1.1}
.hero-stat .num span{color:var(--ac-gold)}
.hero-stat .lbl{font-size:0.8rem;color:rgba(255,255,255,0.55);margin-top:6px;letter-spacing:0.08em}
@media(max-width:768px){
  .hero-section{padding:100px 0 70px}
  .hero-title{font-size:2.2rem}
  .hero-sub{font-size:1rem}
  .hero-stats{grid-template-columns:repeat(2,1fr);margin-top:50px;padding-top:36px}
}
/* ===== Section spacing ===== */
.section-block{padding:100px 0}
.section-block.alt{background:var(--ac-white)}
.section-block.gray{background:#F2F0EC}
/* ===== Feature cards ===== */
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.feature-card{background:var(--ac-white);border:1px solid var(--ac-border);border-radius:var(--ac-radius);padding:38px 30px 32px;transition:all 0.35s ease;position:relative;overflow:hidden}
.feature-card::before{content:"";position:absolute;top:0;left:0;width:100%;height:4px;background:linear-gradient(90deg,var(--ac-red),var(--ac-gold));opacity:0;transition:opacity 0.35s}
.feature-card:hover{box-shadow:var(--ac-shadow-hover);transform:translateY(-6px)}
.feature-card:hover::before{opacity:1}
.feature-icon{width:60px;height:60px;border-radius:16px;background:linear-gradient(135deg,#fef3f4,#ffe8ea);display:flex;align-items:center;justify-content:center;margin-bottom:22px;font-size:1.6rem;color:var(--ac-red)}
.feature-card h3{font-size:1.25rem;font-weight:700;color:var(--ac-dark);margin-bottom:12px}
.feature-card p{font-size:0.95rem;color:var(--ac-muted);line-height:1.7}
@media(max-width:900px){
  .feature-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .feature-grid{grid-template-columns:1fr}
}
/* ===== Category cards ===== */
.cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
.cat-card{position:relative;border-radius:20px;overflow:hidden;height:380px;display:flex;align-items:flex-end;background:#1a1a2e;box-shadow:var(--ac-shadow)}
.cat-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0.7;transition:transform 0.6s ease,opacity 0.4s}
.cat-card:hover img{transform:scale(1.06);opacity:0.5}
.cat-card-overlay{position:relative;z-index:2;padding:30px;width:100%;background:linear-gradient(to top,rgba(0,0,0,0.88) 0%,rgba(0,0,0,0) 70%)}
.cat-card.cat-data-slug{background:var(--ac-navy)}
.cat-card h3{font-size:1.4rem;font-weight:800;color:#fff;margin-bottom:6px}
.cat-card p{font-size:0.86rem;color:rgba(255,255,255,0.7);margin-bottom:16px}
.cat-card .cat-link{display:inline-flex;align-items:center;gap:8px;color:var(--ac-gold);font-size:0.88rem;font-weight:600;text-transform:uppercase;letter-spacing:0.06em}
.cat-card .cat-link i{transition:transform 0.3s}
.cat-card:hover .cat-link i{transform:translateX(6px)}
@media(max-width:960px){
  .cat-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .cat-grid{grid-template-columns:1fr}
}
/* ===== News / CMS list ===== */
.news-row{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}
.news-card{display:flex;background:var(--ac-white);border:1px solid var(--ac-border);border-radius:var(--ac-radius);overflow:hidden;transition:all 0.35s ease}
.news-card:hover{box-shadow:var(--ac-shadow-hover);transform:translateY(-4px)}
.news-thumb{width:170px;min-height:150px;flex-shrink:0}
.news-thumb img{width:100%;height:100%;object-fit:cover}
.news-body{padding:22px 24px;flex:1}
.news-body .news-meta{display:flex;gap:12px;align-items:center;margin-bottom:8px}
.news-body .news-cat{font-size:0.72rem;color:var(--ac-red);background:#fdecee;padding:4px 12px;border-radius:999px;font-weight:600}
.news-body .news-date{font-size:0.75rem;color:var(--ac-muted)}
.news-body h3{font-size:1.02rem;font-weight:700;color:var(--ac-dark);line-height:1.45;margin-bottom:10px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.news-body .news-excerpt{font-size:0.88rem;color:var(--ac-muted);line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.news-empty{text-align:center;padding:60px 20px;color:var(--ac-muted);background:var(--ac-white);border:1px dashed var(--ac-border);border-radius:var(--ac-radius);font-size:1rem}
@media(max-width:820px){
  .news-row{grid-template-columns:1fr}
  .news-thumb{width:130px}
}
@media(max-width:520px){
  .news-card{flex-direction:column}
  .news-thumb{width:100%;height:180px}
}
/* ===== Timeline ===== */
.timeline{position:relative;max-width:880px;margin:0 auto}
.timeline::before{content:"";position:absolute;left:50%;top:0;bottom:0;width:2px;background:linear-gradient(to bottom,var(--ac-red),var(--ac-gold));transform:translateX(-50%)}
.timeline-item{position:relative;display:flex;justify-content:flex-start;padding:26px 0;flex-wrap:wrap}
.timeline-item::before{content:"";position:absolute;left:50%;top:34px;width:14px;height:14px;background:var(--ac-red);border:3px solid var(--ac-white);border-radius:50%;transform:translateX(-50%);box-shadow:0 0 0 3px rgba(200,16,46,0.15)}
.timeline-item .tl-time{width:50%;padding:0 60px 0 0;text-align:right;font-size:0.9rem;font-weight:700;color:var(--ac-red)}
.timeline-item .tl-content{width:50%;padding:0 0 0 60px}
.timeline-item .tl-content h4{font-size:1.1rem;font-weight:700;color:var(--ac-dark);margin-bottom:6px}
.timeline-item .tl-content p{font-size:0.88rem;color:var(--ac-muted)}
@media(max-width:700px){
  .timeline::before{left:20px}
  .timeline-item::before{left:20px}
  .timeline-item .tl-time{width:100%;text-align:left;padding:0 0 8px 48px}
  .timeline-item .tl-content{width:100%;padding:0 0 0 48px}
}
/* ===== Data blocks ===== */
.data-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.data-card{background:var(--ac-white);border:1px solid var(--ac-border);border-radius:var(--ac-radius);padding:34px 24px;text-align:center;transition:all 0.3s}
.data-card:hover{box-shadow:var(--ac-shadow);transform:translateY(-4px)}
.data-card .value{font-size:2.4rem;font-weight:900;color:var(--ac-red);line-height:1.1}
.data-card .value small{font-size:1rem;font-weight:500;color:var(--ac-muted)}
.data-card .label{font-size:0.84rem;color:var(--ac-muted);margin-top:8px}
@media(max-width:900px){.data-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.data-grid{grid-template-columns:1fr 1fr}.data-card{padding:24px 14px}.data-card .value{font-size:1.8rem}}
/* ===== FAQ ===== */
.faq-list{max-width:820px;margin:0 auto}
.faq-item{background:var(--ac-white);border:1px solid var(--ac-border);border-radius:16px;margin-bottom:14px;overflow:hidden;transition:box-shadow 0.3s}
.faq-item:hover{box-shadow:var(--ac-shadow)}
.faq-q{display:flex;align-items:center;justify-content:space-between;padding:22px 28px;cursor:pointer;font-size:1.02rem;font-weight:600;color:var(--ac-dark)}
.faq-q i{color:var(--ac-red);transition:transform 0.3s}
.faq-item.open .faq-q i{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height 0.4s ease}
.faq-a-inner{padding:0 28px 24px;color:var(--ac-muted);font-size:0.94rem;line-height:1.7}
/* ===== CTA ===== */
.cta-section{position:relative;background:linear-gradient(135deg,var(--ac-navy) 0%,var(--ac-dark) 100%),url('/assets/images/backpic/back-2.png') center/cover no-repeat;padding:100px 0;color:var(--ac-white);overflow:hidden}
.cta-section::before{content:"";position:absolute;top:-50%;right:-10%;width:480px;height:480px;border-radius:50%;background:radial-gradient(circle,rgba(212,175,55,0.2),transparent 70%)}
.cta-inner{position:relative;z-index:2;text-align:center}
.cta-inner h2{font-size:2.4rem;font-weight:900;margin-bottom:16px;letter-spacing:-0.02em}
.cta-inner p{color:rgba(255,255,255,0.8);font-size:1.08rem;margin-bottom:36px;max-width:600px;margin-left:auto;margin-right:auto}
.cta-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
/* ===== Footer ===== */
.site-footer{background:var(--ac-dark);color:rgba(255,255,255,0.65);padding:70px 0 30px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:50px;position:relative;padding-bottom:50px;border-bottom:1px solid rgba(255,255,255,0.1)}
.footer-brand .brand-logo .logo-main{color:#fff}
.footer-brand .brand-logo .logo-sub{color:rgba(255,255,255,0.5)}
.footer-brand p{margin-top:18px;font-size:0.88rem;line-height:1.7}
.footer-col h4{color:#fff;font-size:1rem;font-weight:700;margin-bottom:20px;letter-spacing:0.05em}
.footer-col a{display:block;padding:5px 0;font-size:0.88rem;transition:color 0.25s}
.footer-col a:hover{color:var(--ac-gold)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding-top:26px;font-size:0.78rem;color:rgba(255,255,255,0.4)}
.footer-bottom .legal a{margin-left:18px}
@media(max-width:820px){
  .footer-grid{grid-template-columns:1fr;gap:36px}
  .footer-bottom{flex-direction:column;gap:12px;text-align:center}
}
/* ===== Buttons focus ===== */
.btn:focus-visible,.main-nav a:focus-visible,.footer-col a:focus-visible{outline:3px solid rgba(200,16,46,0.4);outline-offset:3px;border-radius:6px}
/* ===== Intro split ===== */
.intro-split{display:grid;grid-template-columns:1.05fr 0.95fr;gap:60px;align-items:center}
.intro-split .intro-img{border-radius:20px;overflow:hidden;box-shadow:var(--ac-shadow)}
.intro-split .intro-img img{width:100%;height:420px;object-fit:cover}
.intro-text h2{font-size:2rem;font-weight:800;color:var(--ac-dark);line-height:1.3;margin-bottom:22px}
.intro-text p{color:var(--ac-muted);font-size:1rem;margin-bottom:20px;line-height:1.8}
.intro-points{list-style:none;margin-top:28px}
.intro-points li{display:flex;align-items:flex-start;gap:14px;margin-bottom:14px;font-size:0.95rem;color:var(--ac-text)}
.intro-points li i{color:var(--ac-red);margin-top:4px}
@media(max-width:900px){
  .intro-split{grid-template-columns:1fr;gap:40px}
  .intro-split .intro-img img{height:300px}
}

/* roulang page: category1 */
:root{
  --color-primary:#C8102E;
  --color-primary-dark:#9E0C24;
  --color-primary-light:#FDE8EC;
  --color-secondary:#1B1B1B;
  --color-accent:#D8A520;
  --color-bg:#F7F5F2;
  --color-surface:#FFFFFF;
  --color-text:#1E1E1E;
  --color-muted:#6B7280;
  --color-border:#E8E4DF;
  --radius-lg:20px;
  --radius-md:14px;
  --radius-sm:8px;
  --shadow-1:0 4px 16px rgba(0,0,0,.06);
  --shadow-2:0 14px 34px rgba(0,0,0,.10);
  --space-section:96px;
  --space-section-md:64px;
  --font-family:"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-family);
  font-size:16px;
  line-height:1.75;
  color:var(--color-text);
  background:var(--color-bg);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;transition:color .25s;}
button{font-family:inherit;border:none;cursor:pointer;}
ul,ol{list-style:none;}
input,textarea{font-family:inherit;}

.container{max-width:1200px;margin:0 auto;padding:0 24px;}
.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  line-height:1.4;
  color:var(--color-primary);
  background:var(--color-primary-light);
  letter-spacing:.3px;
}
.badge-gold{
  color:#8A6D14;
  background:#FBF1D3;
}
.badge-dark{
  color:#fff;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.2);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 30px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  letter-spacing:.4px;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
  text-align:center;
}
.btn i{font-size:14px;}
.btn-primary{
  background:var(--color-primary);
  color:#fff;
  box-shadow:0 8px 22px rgba(200,16,46,.28);
}
.btn-primary:hover{
  background:var(--color-primary-dark);
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(200,16,46,.34);
  color:#fff;
}
.btn-outline{
  background:transparent;
  color:#fff;
  border:1.5px solid rgba(255,255,255,.55);
}
.btn-outline:hover{
  background:rgba(255,255,255,.12);
  border-color:#fff;
  transform:translateY(-2px);
}
.btn-outline-dark{
  background:transparent;
  color:var(--color-text);
  border:1.5px solid var(--color-border);
}
.btn-outline-dark:hover{
  border-color:var(--color-primary);
  color:var(--color-primary);
  transform:translateY(-2px);
}

.section{padding:var(--space-section) 0;}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:44px;
}
.section-title{
  font-size:36px;
  font-weight:900;
  line-height:1.2;
  letter-spacing:.5px;
  color:var(--color-secondary);
}
.section-title span{
  color:var(--color-primary);
}
.section-desc{
  margin-top:10px;
  font-size:15px;
  color:var(--color-muted);
  max-width:560px;
}
.section-link{
  flex-shrink:0;
  font-size:14px;
  font-weight:700;
  color:var(--color-primary);
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding-bottom:4px;
  border-bottom:2px solid transparent;
}
.section-link:hover{
  border-bottom-color:var(--color-primary);
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--color-border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:78px;
  gap:24px;
}
.brand-logo{
  display:inline-flex;
  flex-direction:column;
  line-height:1.25;
  flex-shrink:0;
}
.logo-main{
  font-size:18px;
  font-weight:900;
  letter-spacing:.4px;
  color:var(--color-secondary);
  white-space:nowrap;
}
.logo-main span{color:var(--color-primary);}
.logo-sub{
  display:block;
  font-size:9px;
  font-weight:600;
  letter-spacing:2.4px;
  text-transform:uppercase;
  color:var(--color-muted);
}
.main-nav{
  display:flex;
  align-items:center;
  gap:4px;
}
.main-nav a{
  position:relative;
  padding:10px 16px;
  font-size:14px;
  font-weight:600;
  color:var(--color-muted);
  border-radius:var(--radius-sm);
  transition:color .25s,background .25s;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:0;
  height:2px;
  border-radius:2px;
  background:var(--color-primary);
  transform:scaleX(.3);
  opacity:0;
  transition:transform .35s ease,opacity .35s ease;
}
.main-nav a:hover{
  color:var(--color-text);
  background:rgba(0,0,0,.03);
}
.main-nav a:hover::after{
  transform:scaleX(1);
  opacity:1;
}
.main-nav a.active{
  color:var(--color-primary);
}
.main-nav a.active::after{
  transform:scaleX(1);
  opacity:1;
}
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  background:var(--color-bg);
  color:var(--color-secondary);
  border-radius:12px;
  font-size:18px;
  transition:background .25s;
}
.nav-toggle:hover{
  background:var(--color-primary-light);
  color:var(--color-primary);
}

/* Page Hero */
.page-hero{
  position:relative;
  padding:120px 0 104px;
  background:linear-gradient(135deg,rgba(16,16,18,.92) 0%,rgba(30,28,28,.78) 60%,rgba(200,16,46,.30) 100%),url('/assets/images/backpic/back-2.png') center/cover no-repeat;
  color:#fff;
  overflow:hidden;
}
.page-hero::after{
  content:"";
  position:absolute;
  right:-180px;
  top:-180px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(200,16,46,.35) 0%,rgba(200,16,46,0) 70%);
  pointer-events:none;
}
.hero-breadcrumb{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:28px;
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,.6);
  letter-spacing:.4px;
}
.hero-breadcrumb a{color:rgba(255,255,255,.75);}
.hero-breadcrumb a:hover{color:#fff;}
.hero-breadcrumb i{font-size:10px;color:rgba(255,255,255,.4);}
.hero-title{
  position:relative;
  z-index:1;
  font-size:52px;
  line-height:1.12;
  font-weight:900;
  letter-spacing:1px;
  margin-bottom:22px;
}
.hero-title span{
  color:var(--color-primary);
  -webkit-text-fill-color:var(--color-primary);
}
.hero-lead{
  position:relative;
  z-index:1;
  max-width:720px;
  font-size:17px;
  line-height:1.9;
  color:rgba(255,255,255,.82);
  margin-bottom:40px;
}
.hero-meta{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:30px;
}
.hero-meta span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:600;
  color:rgba(255,255,255,.85);
}
.hero-meta i{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:13px;
}

/* Category Cards */
.category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}
.category-card{
  position:relative;
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-1);
  transition:transform .35s ease,box-shadow .35s ease;
}
.category-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-2);
}
.category-card .thumb{
  position:relative;
  height:180px;
  overflow:hidden;
}
.category-card .thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.42) 0%,rgba(0,0,0,0) 48%);
}
.category-card .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.category-card:hover .thumb img{
  transform:scale(1.06);
}
.category-card .thumb .badge{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  background:rgba(255,255,255,.88);
  color:var(--color-primary);
  box-shadow:0 4px 12px rgba(0,0,0,.12);
}
.card-body{padding:24px 24px 28px;}
.card-num{
  display:block;
  font-size:13px;
  font-weight:800;
  letter-spacing:2px;
  color:var(--color-primary);
  opacity:.8;
  margin-bottom:6px;
}
.card-title{
  font-size:20px;
  font-weight:800;
  line-height:1.35;
  margin-bottom:12px;
  color:var(--color-secondary);
}
.card-text{
  font-size:14px;
  line-height:1.75;
  color:var(--color-muted);
}

/* News Section */
.news-section{
  background:var(--color-bg);
}
.news-section .section-inner{
  background:transparent;
}
.news-layout{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:36px;
  align-items:start;
}
.news-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.news-item{
  display:flex;
  gap:22px;
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
  padding:18px;
  transition:box-shadow .3s ease,transform .3s ease,border-color .3s ease;
}
.news-item:hover{
  box-shadow:var(--shadow-1);
  transform:translateY(-3px);
  border-color:#D9D2CC;
}
.news-thumb{
  width:186px;
  height:124px;
  flex-shrink:0;
  border-radius:12px;
  overflow:hidden;
}
.news-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.news-item:hover .news-thumb img{
  transform:scale(1.04);
}
.news-body{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
}
.news-meta{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:12px;
  color:var(--color-muted);
  margin-bottom:8px;
}
.news-meta .badge{
  font-size:11px;
  padding:4px 10px;
}
.news-title{
  font-size:17px;
  font-weight:800;
  line-height:1.5;
  color:var(--color-text);
  margin-bottom:6px;
  transition:color .25s;
}
.news-title:hover{
  color:var(--color-primary);
}
.news-excerpt{
  font-size:13px;
  line-height:1.7;
  color:var(--color-muted);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.side-stack{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.side-card{
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--shadow-1);
}
.side-title{
  font-size:18px;
  font-weight:800;
  margin-bottom:20px;
  padding-bottom:14px;
  border-bottom:2px solid var(--color-bg);
  color:var(--color-secondary);
}
.metric-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.metric-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 16px;
  background:var(--color-bg);
  border-radius:12px;
}
.metric-label{
  font-size:13px;
  font-weight:600;
  color:var(--color-muted);
}
.metric-value{
  font-size:18px;
  font-weight:900;
  color:var(--color-text);
}
.metric-value small{
  font-size:12px;
  color:var(--color-muted);
  font-weight:600;
}
.trend-list{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.trend-list a{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 4px;
  border-bottom:1px dashed var(--color-border);
  font-size:14px;
  font-weight:600;
  color:var(--color-text);
  transition:color .25s,padding-left .25s;
}
.trend-list a:hover{
  color:var(--color-primary);
  padding-left:8px;
}
.trend-list a:last-child{
  border-bottom:none;
}
.trend-list .trend-num{
  color:var(--color-primary);
  font-weight:800;
  font-size:13px;
}

/* Data Panel */
.data-panel{
  position:relative;
  background:linear-gradient(150deg,#121316 0%,#232127 60%,#2B1A20 100%);
  color:#fff;
  overflow:hidden;
}
.data-panel::before{
  content:"AC MILAN";
  position:absolute;
  right:-40px;
  bottom:-80px;
  font-size:240px;
  font-weight:900;
  letter-spacing:-4px;
  color:rgba(255,255,255,.025);
  white-space:nowrap;
  pointer-events:none;
}
.data-card-wrap{
  position:relative;
  z-index:1;
}
.data-card-wrap .cell{
  padding-bottom:20px;
}
.data-panel .section-title{
  color:#fff;
}
.data-panel .section-desc{
  color:rgba(255,255,255,.62);
}
.data-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg);
  padding:30px 22px;
  text-align:center;
  backdrop-filter:blur(6px);
  transition:transform .3s ease,background .3s ease,border-color .3s ease;
  height:100%;
}
.data-card:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(216,165,32,.5);
  transform:translateY(-6px);
}
.data-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  margin-bottom:16px;
  border-radius:14px;
  background:rgba(200,16,46,.22);
  color:#FF8A9B;
  font-size:18px;
}
.data-value{
  font-size:42px;
  font-weight:900;
  line-height:1.1;
  margin-bottom:6px;
  letter-spacing:-.5px;
}
.data-value em{
  font-style:normal;
  font-size:20px;
  color:rgba(255,255,255,.7);
  font-weight:700;
  margin-left:2px;
}
.data-label{
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,.65);
  letter-spacing:.6px;
}
.data-note{
  margin-top:36px;
  font-size:12px;
  color:rgba(255,255,255,.45);
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:22px;
  position:relative;
  z-index:1;
}

/* Timeline */
.timeline-wrap{
  max-width:820px;
}
.timeline{
  position:relative;
  margin-left:10px;
  padding-left:36px;
  border-left:2px solid var(--color-border);
}
.timeline-item{
  position:relative;
  padding-bottom:34px;
}
.timeline-item:last-child{
  padding-bottom:0;
}
.timeline-item::before{
  content:"";
  position:absolute;
  left:-41px;
  top:4px;
  width:14px;
  height:14px;
  background:var(--color-primary);
  border-radius:50%;
  box-shadow:0 0 0 5px rgba(200,16,46,.15);
}
.timeline-date{
  display:inline-flex;
  align-items:center;
  font-size:12px;
  font-weight:700;
  letter-spacing:.6px;
  color:var(--color-primary);
  background:var(--color-primary-light);
  border-radius:999px;
  padding:4px 14px;
  margin-bottom:12px;
}
.timeline-title{
  font-size:18px;
  font-weight:800;
  color:var(--color-text);
  margin-bottom:8px;
}
.timeline-text{
  font-size:14px;
  line-height:1.8;
  color:var(--color-muted);
}

/* FAQ */
.faq-wrap{
  max-width:860px;
  margin:0 auto;
}
.faq-item{
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
  margin-bottom:16px;
  overflow:hidden;
  transition:box-shadow .3s ease,border-color .3s ease;
}
.faq-item:hover{
  box-shadow:var(--shadow-1);
  border-color:#D9D2CC;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px 26px;
  font-size:16px;
  font-weight:700;
  color:var(--color-secondary);
}
.faq-item summary::-webkit-details-marker{
  display:none;
}
.faq-item summary i{
  flex-shrink:0;
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--color-bg);
  color:var(--color-primary);
  font-size:13px;
  transition:transform .35s ease,background .35s ease;
}
.faq-item[open] summary i{
  transform:rotate(180deg);
  background:var(--color-primary);
  color:#fff;
}
.faq-item .faq-answer{
  padding:0 26px 24px;
  font-size:14px;
  line-height:1.9;
  color:var(--color-muted);
}

/* CTA */
.cta-section{
  padding:0 24px 96px;
}
.cta-panel{
  position:relative;
  background:linear-gradient(135deg,#C8102E 0%,#8F0A21 100%);
  border-radius:28px;
  padding:70px 64px;
  overflow:hidden;
  color:#fff;
  box-shadow:0 20px 50px rgba(200,16,46,.35);
  text-align:center;
}
.cta-panel::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:480px;
  height:480px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.16) 0%,rgba(255,255,255,0) 70%);
  transform:translate(-50%,-50%);
}
.cta-panel::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-140px;
  width:300px;
  height:300px;
  border-radius:50%;
  border:30px solid rgba(255,255,255,.08);
}
.cta-panel > *{
  position:relative;
  z-index:1;
}
.cta-badge{
  display:inline-block;
  padding:6px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:18px;
}
.cta-title{
  font-size:38px;
  font-weight:900;
  line-height:1.25;
  margin-bottom:16px;
}
.cta-text{
  max-width:620px;
  margin:0 auto 34px;
  font-size:16px;
  line-height:1.85;
  color:rgba(255,255,255,.86);
}
.cta-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

/* Footer */
.site-footer{
  background:#161618;
  color:#A6A6AB;
  padding:70px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr;
  gap:48px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-logo{
  margin-bottom:18px;
}
.footer-brand .logo-main{
  color:#fff;
  font-size:18px;
}
.footer-brand .logo-main span{
  color:var(--color-primary);
}
.footer-brand .logo-sub{
  color:rgba(255,255,255,.4);
}
.footer-brand p{
  font-size:14px;
  line-height:1.9;
  color:#93939A;
  max-width:340px;
}
.footer-col h4{
  color:#fff;
  font-size:15px;
  font-weight:700;
  margin-bottom:20px;
  letter-spacing:.4px;
}
.footer-col a{
  display:block;
  padding:7px 0;
  font-size:14px;
  color:#A6A6AB;
  transition:color .25s,padding-left .25s;
}
.footer-col a:hover{
  color:#fff;
  padding-left:6px;
}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:26px 0;
  flex-wrap:wrap;
  font-size:13px;
  color:#73737A;
}
.footer-bottom .legal{
  display:flex;
  gap:24px;
}
.footer-bottom .legal a{
  color:#73737A;
  font-size:13px;
}
.footer-bottom .legal a:hover{
  color:#fff;
}

/* Responsive */
@media screen and (max-width:1024px){
  .category-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .news-layout{
    grid-template-columns:1fr;
  }
  .side-stack{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
  }
}

@media screen and (max-width:820px){
  .section{padding:70px 0;}
  .hero-title{
    font-size:38px;
  }
  .hero-meta{
    gap:18px;
  }
  .main-nav{
    display:none;
    position:absolute;
    top:78px;
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    background:#fff;
    border-bottom:1px solid var(--color-border);
    padding:16px;
    box-shadow:var(--shadow-2);
    gap:4px;
  }
  .main-nav.open{
    display:flex;
  }
  .main-nav a{
    padding:14px 16px;
    border-radius:12px;
  }
  .main-nav a::after{
    display:none;
  }
  .main-nav a.active{
    background:var(--color-primary-light);
  }
  .nav-toggle{
    display:inline-flex;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media screen and (max-width:640px){
  .section{padding:58px 0;}
  .section-head{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    margin-bottom:32px;
  }
  .section-title{
    font-size:28px;
  }
  .news-item{
    flex-direction:column;
    gap:14px;
  }
  .news-thumb{
    width:100%;
    height:180px;
  }
  .side-stack{
    grid-template-columns:1fr;
  }
  .cta-panel{
    padding:48px 24px;
  }
  .cta-title{
    font-size:28px;
  }
  .hero-title{
    font-size:32px;
  }
  .hero-lead{
    font-size:15px;
  }
  .footer-grid{
    grid-template-columns:1fr;
    gap:36px;
  }
  .footer-bottom{
    flex-direction:column;
    justify-content:center;
    text-align:center;
  }
}

@media screen and (max-width:480px){
  .container{
    padding:0 18px;
  }
  .category-grid{
    grid-template-columns:1fr;
  }
  .logo-main{
    font-size:15px;
  }
  .logo-sub{
    font-size:8px;
    letter-spacing:1.6px;
  }
  .data-panel .data-value{
    font-size:32px;
  }
  .timeline{
    padding-left:24px;
  }
  .timeline-item::before{
    left:-31px;
  }
  .cta-buttons .btn{
    width:100%;
  }
}

@media (prefers-reduced-motion:reduce){
  *{
    animation-duration:.01ms !important;
    transition-duration:.01ms !important;
  }
}

/* roulang page: article */
:root {
  --primary: #D4001C;
  --primary-dark: #A30015;
  --secondary: #111114;
  --gold: #C9A96E;
  --bg: #F5F3F0;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --muted: #73737A;
  --border: #E9E4DE;
  --line: rgba(0,0,0,.08);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 24px 48px rgba(0,0,0,.14);
  --font: "PingFang SC","Microsoft YaHei","Helvetica Neue",Arial,sans-serif;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height:1.7; -webkit-font-smoothing:antialiased; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; transition:color .2s ease; }
button { font-family:inherit; cursor:pointer; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
h1,h2,h3,h4,h5,h6 { line-height:1.25; font-weight:800; color:var(--text); }
a:focus-visible, button:focus-visible, summary:focus-visible { outline:3px solid rgba(212,0,28,.45); outline-offset:2px; }

.site-header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:100;
}
.header-inner {
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand-logo { display:flex; flex-direction:column; gap:2px; line-height:1.2; }
.logo-main { font-size:1.45rem; font-weight:900; color:var(--primary); letter-spacing:.02em; }
.logo-main span { color:var(--secondary); }
.logo-sub { font-size:.68rem; letter-spacing:.2em; color:var(--muted); text-transform:uppercase; }
.main-nav { display:flex; gap:2.2rem; }
.main-nav a { position:relative; font-size:.95rem; font-weight:500; color:var(--text); padding:8px 0; }
.main-nav a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--primary); border-radius:2px; transition:width .3s ease; }
.main-nav a:hover::after, .main-nav a.active::after { width:100%; }
.main-nav a.active { color:var(--primary); font-weight:700; }
.nav-toggle { display:none; background:none; border:none; font-size:1.5rem; color:var(--text); padding:8px; }

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 26px;
  border-radius:999px;
  font-weight:700;
  font-size:.95rem;
  border:2px solid transparent;
  transition:var(--transition);
  text-align:center;
}
.btn-primary { background:var(--primary); color:#fff; box-shadow:0 8px 20px rgba(212,0,28,.28); }
.btn-primary:hover { background:var(--primary-dark); transform:translateY(-2px); box-shadow:0 12px 28px rgba(212,0,28,.36); }
.btn-outline { border-color:var(--primary); color:var(--primary); background:transparent; }
.btn-outline:hover { background:var(--primary); color:#fff; transform:translateY(-2px); }
.btn-light { background:#fff; color:var(--primary); box-shadow:0 8px 20px rgba(0,0,0,.18); }
.btn-light:hover { transform:translateY(-2px); box-shadow:0 12px 28px rgba(0,0,0,.24); }
.btn-dark { background:var(--secondary); color:#fff; }
.btn-dark:hover { background:#2A2A2F; transform:translateY(-2px); }

.page-banner {
  background:linear-gradient(120deg, rgba(17,17,20,.82), rgba(17,17,20,.52)), url('/assets/images/backpic/back-1.png') center/cover;
  padding:100px 0 70px;
  text-align:center;
  color:#fff;
  border-bottom:4px solid var(--primary);
}
.page-banner h1 { color:#fff; font-size:2.8rem; margin-bottom:10px; }
.page-banner p { color:rgba(255,255,255,.85); max-width:720px; margin:0 auto; font-size:1.1rem; }
.banner-tag {
  display:inline-block;
  padding:6px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
  font-size:.85rem;
  margin-bottom:18px;
  letter-spacing:.1em;
  font-weight:600;
}

.section { padding:80px 0; }
.section-head { max-width:760px; margin-bottom:48px; }
.section-head h2 { font-size:2.2rem; margin-bottom:10px; }
.section-head p { color:var(--muted); font-size:1.05rem; }
.section-head.center { text-align:center; margin-left:auto; margin-right:auto; }

.article-wrap { padding:60px 0; }
.article-layout {
  display:grid;
  grid-template-columns:1fr 340px;
  gap:48px;
  align-items:start;
}
.article-main {
  background:var(--surface);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:48px;
  border:1px solid var(--border);
}
.article-header {
  margin-bottom:32px;
  padding-bottom:24px;
  border-bottom:1px solid var(--line);
}
.breadcrumb { font-size:.85rem; color:var(--muted); margin-bottom:16px; }
.breadcrumb a { color:var(--muted); }
.breadcrumb a:hover { color:var(--primary); }
.article-header h1 { font-size:2rem; line-height:1.35; margin:12px 0 16px; }
.article-meta { display:flex; flex-wrap:wrap; gap:18px; color:var(--muted); font-size:.9rem; }
.article-meta i { margin-right:5px; color:var(--primary); }
.badge {
  display:inline-block;
  background:rgba(212,0,28,.1);
  color:var(--primary);
  padding:4px 12px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
}
.article-content { font-size:1.05rem; line-height:1.9; color:#2A2A2F; }
.article-content h2 { font-size:1.6rem; margin-top:40px; margin-bottom:16px; color:var(--text); }
.article-content h3 { font-size:1.3rem; margin-top:32px; margin-bottom:12px; color:var(--text); }
.article-content p { margin-bottom:20px; }
.article-content blockquote {
  border-left:4px solid var(--primary);
  background:#FDF6F7;
  padding:16px 24px;
  border-radius:0 12px 12px 0;
  margin:24px 0;
  color:#5A141F;
  font-style:normal;
}
.article-content ul, .article-content ol { padding-left:1.4em; margin-bottom:20px; }
.article-content li { margin-bottom:8px; }
.article-content img { border-radius:var(--radius); margin:24px 0; }
.article-content a { color:var(--primary); text-decoration:underline; }
.article-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:32px; }
.tag {
  background:#F1EEE9;
  color:var(--text);
  padding:6px 14px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:600;
}
.not-found { text-align:center; padding:80px 20px; }
.not-found h1 { font-size:2.4rem; color:var(--primary); margin-bottom:16px; }
.not-found p { color:var(--muted); margin-bottom:28px; }

.sidebar { display:flex; flex-direction:column; gap:28px; }
.side-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}
.side-card h3 {
  font-size:1.05rem;
  margin-bottom:16px;
  padding-bottom:10px;
  border-bottom:2px solid var(--primary);
  display:inline-block;
}
.side-card .intro { color:var(--muted); font-size:.92rem; margin-bottom:16px; }
.side-list { list-style:none; }
.side-list li { padding:10px 0; border-bottom:1px solid var(--line); }
.side-list li:last-child { border-bottom:none; }
.side-list a { display:flex; align-items:center; gap:8px; font-size:.92rem; }
.side-list a i { color:var(--primary); width:16px; text-align:center; }
.side-list a:hover { color:var(--primary); }

.related-section { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.rel-card {
  background:var(--bg);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  transition:var(--transition);
  display:flex;
  flex-direction:column;
}
.rel-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.rel-card img { width:100%; height:200px; object-fit:cover; }
.rel-card-body { padding:24px; display:flex; flex-direction:column; flex:1; }
.rel-card-body h3 { font-size:1.1rem; line-height:1.4; margin-bottom:8px; }
.rel-card-body h3 a:hover { color:var(--primary); }
.rel-card-body p { color:var(--muted); font-size:.9rem; margin-bottom:14px; flex:1; }
.rel-card-body .btn { align-self:flex-start; }

.faq-grid { max-width:860px; margin:0 auto; }
details {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:20px 24px;
  margin-bottom:14px;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
  transition:var(--transition);
}
details:hover { border-color:rgba(212,0,28,.4); }
summary { font-weight:700; cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; }
summary::-webkit-details-marker { display:none; }
summary::after { content:"+"; font-size:1.4rem; color:var(--primary); transition:var(--transition); font-weight:400; }
details[open] summary::after { content:"−"; }
details p { color:var(--muted); margin-top:14px; line-height:1.8; }

.cta-section {
  background:linear-gradient(120deg, var(--secondary), #2A0A0E);
  padding:80px 0;
  color:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-section::before {
  content:"";
  position:absolute;
  inset:0;
  background:url('/assets/images/backpic/back-2.png') center/cover;
  opacity:.16;
}
.cta-section .container { position:relative; z-index:2; }
.cta-section h2 { color:#fff; font-size:2.3rem; margin-bottom:14px; }
.cta-section p { color:rgba(255,255,255,.85); max-width:640px; margin:0 auto 36px; font-size:1.05rem; }
.cta-actions { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

.site-footer {
  background:var(--secondary);
  color:rgba(255,255,255,.75);
  padding:70px 0 0;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr;
  gap:48px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-logo { margin-bottom:16px; }
.footer-brand .logo-main { color:#fff; }
.footer-brand .logo-main span { color:var(--gold); }
.footer-brand .logo-sub { color:rgba(255,255,255,.5); }
.footer-brand p { font-size:.9rem; line-height:1.8; max-width:320px; }
.footer-col h4 { color:#fff; font-size:1rem; margin-bottom:18px; }
.footer-col a { display:block; color:rgba(255,255,255,.65); padding:7px 0; font-size:.9rem; }
.footer-col a:hover { color:var(--gold); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding:24px 0; font-size:.85rem; flex-wrap:wrap; gap:12px; color:rgba(255,255,255,.5); }
.legal { display:flex; gap:18px; }
.legal a { color:rgba(255,255,255,.5); }
.legal a:hover { color:var(--gold); }

@media (max-width: 1024px) {
  .article-layout { grid-template-columns:1fr 280px; gap:32px; }
  .related-grid { grid-template-columns:repeat(3,1fr); gap:20px; }
  .article-main { padding:32px; }
}
@media (max-width: 768px) {
  .header-inner { height:70px; }
  .nav-toggle { display:block; }
  .main-nav {
    position:fixed;
    top:70px;
    right:0;
    background:#fff;
    width:280px;
    height:calc(100vh - 70px);
    flex-direction:column;
    padding:32px;
    gap:6px;
    transform:translateX(100%);
    transition:transform .35s ease;
    box-shadow:-10px 0 30px rgba(0,0,0,.1);
    border-left:1px solid var(--line);
  }
  .main-nav.open { transform:translateX(0); }
  .article-layout { grid-template-columns:1fr; }
  .related-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .page-banner h1 { font-size:2rem; }
  .page-banner { padding:70px 0 50px; }
  .article-main { padding:24px; }
  .article-header h1 { font-size:1.6rem; }
  .section { padding:56px 0; }
}
@media (max-width: 520px) {
  .container { padding:0 18px; }
  .related-grid { grid-template-columns:1fr; }
  .cta-actions { flex-direction:column; align-items:center; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .legal { justify-content:center; }
  .logo-main { font-size:1.2rem; }
  .logo-sub { font-size:.6rem; }
}

/* roulang page: category3 */
:root {
    --primary: #C8102E;
    --primary-dark: #9B0B22;
    --secondary: #1B1B3A;
    --accent: #E8B531;
    --bg: #F7F4F0;
    --bg-alt: #FFFFFF;
    --bg-dark: #141428;
    --text: #1F1F2D;
    --text-weak: #6A6A7A;
    --border: #E8E2DA;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 12px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 18px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --space: 100px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.site-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand-logo { display: flex; flex-direction: column; line-height: 1.2; gap: 4px; flex-shrink: 0; }
.logo-main { font-size: 20px; font-weight: 800; color: var(--primary); letter-spacing: 0.5px; }
.logo-main span { font-weight: 600; color: var(--secondary); }
.logo-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; color: #999; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
    font-size: 14px; font-weight: 500; color: #444;
    padding: 8px 2px; position: relative; white-space: nowrap;
}
.main-nav a::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
    background: var(--primary); border-radius: 2px; transition: var(--transition);
}
.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--primary); font-weight: 700; }
.main-nav a.active::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; font-size: 22px; color: var(--text); cursor: pointer; padding: 8px; }

.page-hero {
    background: linear-gradient(135deg, #141428 0%, #1B1B3A 55%, #2A0A18 100%);
    background-image: url('/assets/images/backpic/back-2.png'), linear-gradient(135deg, #141428 0%, #1B1B3A 55%, #2A0A18 100%);
    background-size: cover; background-position: center;
    padding: 110px 0 90px; position: relative; overflow: hidden;
    color: #fff;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(20,20,40,0.92) 30%, rgba(200,16,46,0.55) 100%);
}
.page-hero .hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600;
    letter-spacing: 1px; margin-bottom: 24px; backdrop-filter: blur(6px);
}
.page-hero h1 { font-size: 44px; font-weight: 800; line-height: 1.25; margin-bottom: 20px; letter-spacing: 1px; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 34px; max-width: 640px; }
.hero-badge-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.14); border-radius: 50px;
    padding: 8px 18px; font-size: 13px; font-weight: 500;
    border: 1px solid rgba(255,255,255,0.22);
}
.hero-badge i { color: var(--accent); }

.breadcrumb-bar { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 14px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-weak); flex-wrap: wrap; }
.breadcrumb a { color: var(--text-weak); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 10px; color: #C0B8B0; }
.breadcrumb .current { color: var(--primary); font-weight: 600; }

.section { padding: var(--space) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #fff; position: relative; overflow: hidden; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block; font-size: 12px; font-weight: 700;
    letter-spacing: 3px; color: var(--primary); text-transform: uppercase;
    margin-bottom: 14px; background: rgba(200,16,46,0.08);
    padding: 6px 18px; border-radius: 50px;
}
.section-dark .section-tag { background: rgba(255,255,255,0.1); color: var(--accent); }
.section-head h2 { font-size: 34px; font-weight: 800; line-height: 1.35; letter-spacing: 0.5px; }
.section-head p { font-size: 16px; color: var(--text-weak); margin-top: 14px; line-height: 1.8; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--bg-alt); border-radius: var(--radius);
    padding: 36px 28px; border: 1px solid var(--border);
    box-shadow: var(--shadow); transition: var(--transition);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(200,16,46,0.2); }
.service-icon {
    width: 60px; height: 60px; border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(200,16,46,0.1), rgba(200,16,46,0.04));
    color: var(--primary); font-size: 24px; margin-bottom: 20px;
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-weak); line-height: 1.75; }
.service-card .link-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--primary); }
.service-card .link-more:hover { gap: 10px; }

.guide-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.guide-main { display: flex; flex-direction: column; gap: 32px; }
.guide-hero-card {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); background: var(--bg-alt);
}
.guide-hero-card img { width: 100%; height: 240px; object-fit: cover; }
.guide-hero-body { padding: 28px; }
.guide-hero-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.guide-hero-body p { font-size: 14px; color: var(--text-weak); line-height: 1.8; }
.guide-list { background: var(--bg-alt); border-radius: var(--radius); padding: 8px 28px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.guide-list-item { padding: 20px 0; border-bottom: 1px solid var(--border); display: flex; gap: 16px; }
.guide-list-item:last-child { border-bottom: 0; }
.guide-step { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-weight: 700; font-size: 15px; }
.guide-item-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.guide-item-body p { font-size: 14px; color: var(--text-weak); line-height: 1.7; }

.sidebar-card {
    background: var(--bg-alt); border-radius: var(--radius);
    padding: 30px; border: 1px solid var(--border);
    box-shadow: var(--shadow); margin-bottom: 24px;
}
.sidebar-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--primary); display: flex; align-items: center; gap: 10px; }
.sidebar-card h3 i { color: var(--primary); }
.sidebar-list li { padding: 10px 0; border-bottom: 1px dashed var(--border); display: flex; align-items: center; gap: 10px; font-size: 14px; }
.sidebar-list li:last-child { border-bottom: 0; }
.sidebar-list li i { color: var(--primary); font-size: 12px; }
.sidebar-list li a:hover { color: var(--primary); padding-left: 4px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info .ci-item { display: flex; align-items: center; gap: 14px; font-size: 14px; }
.contact-info .ci-item i { width: 38px; height: 38px; border-radius: 10px; background: rgba(200,16,46,0.08); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 15px; }
.contact-info .ci-item span { color: var(--text-weak); font-size: 13px; }
.contact-info .ci-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }

.event-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.event-card {
    background: var(--bg-alt); border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--border);
    box-shadow: var(--shadow); transition: var(--transition);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.event-card .event-img { position: relative; height: 150px; overflow: hidden; }
.event-card .event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-img img { transform: scale(1.06); }
.event-date {
    position: absolute; top: 12px; left: 12px;
    background: rgba(20,20,40,0.85); color: #fff;
    border-radius: 8px; padding: 6px 12px; text-align: center;
    backdrop-filter: blur(4px); line-height: 1.1;
}
.event-date .d { font-size: 18px; font-weight: 800; display: block; }
.event-date .m { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.event-body { padding: 20px; }
.event-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.event-body p { font-size: 13px; color: var(--text-weak); line-height: 1.7; }
.event-body .event-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-weak); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }

.team-community { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.community-card {
    background: var(--bg-alt); border-radius: var(--radius);
    border: 1px solid var(--border); box-shadow: var(--shadow);
    padding: 28px; text-align: center; transition: var(--transition);
}
.community-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(200,16,46,0.2); }
.community-avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden; border: 3px solid var(--primary); box-shadow: 0 6px 16px rgba(200,16,46,0.2); }
.community-avatar img { width: 100%; height: 100%; object-fit: cover; }
.community-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.community-card .role { font-size: 12px; color: var(--primary); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.community-card p { font-size: 14px; color: var(--text-weak); margin: 14px 0 18px; line-height: 1.75; }
.community-card .btn-sm { font-size: 13px; }

.stats-section { padding: 70px 0; background: var(--secondary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item h3 { font-size: 40px; font-weight: 800; color: #fff; line-height: 1.2; }
.stat-item h3 span { color: var(--accent); }
.stat-item p { font-size: 14px; color: rgba(255,255,255,0.7); letter-spacing: 1px; margin-top: 8px; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 960px; margin: 0 auto; }
.faq-item {
    background: var(--bg-alt); border-radius: var(--radius-sm);
    border: 1px solid var(--border); padding: 24px;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(200,16,46,0.25); box-shadow: var(--shadow); }
.faq-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.faq-item h3 i { color: var(--primary); font-size: 14px; margin-top: 5px; }
.faq-item p { font-size: 14px; color: var(--text-weak); line-height: 1.8; }

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative; overflow: hidden; padding: 80px 0;
}
.cta-section::before {
    content: ""; position: absolute; inset: 0;
    background-image: url('/assets/images/backpic/back-3.png');
    background-size: cover; background-position: center;
    opacity: 0.15;
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { font-size: 34px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 32px; line-height: 1.8; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 30px; border-radius: 50px; font-size: 15px; font-weight: 600;
    border: 0; cursor: pointer; transition: var(--transition);
    line-height: 1.4;
}
.btn-primary { background: #fff; color: var(--primary); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.22); }
.btn-dark { background: var(--secondary); color: #fff; }
.btn-dark:hover { background: #11112A; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.site-footer { background: #0F0F20; color: rgba(255,255,255,0.8); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-logo { margin-bottom: 18px; }
.footer-brand .logo-main { color: #fff; font-size: 20px; }
.footer-brand .logo-main span { color: var(--accent); }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-top: 14px; max-width: 340px; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.5px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--primary); border-radius: 2px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 14px; padding: 6px 0; }
.footer-col a:hover { color: var(--accent); padding-left: 6px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom .legal { display: flex; gap: 24px; }

@media screen and (max-width: 1024px) {
    :root { --space: 80px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .event-grid { grid-template-columns: repeat(2, 1fr); }
    .team-community { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .guide-layout { grid-template-columns: 1fr; gap: 40px; }
    .faq-grid { grid-template-columns: 1fr; }
}
@media screen and (max-width: 768px) {
    .header-inner { height: 64px; }
    .logo-main { font-size: 17px; }
    .logo-sub { font-size: 8px; letter-spacing: 1.5px; }
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; top: 64px; left: 0; right: 0;
        background: rgba(255,255,255,0.98); flex-direction: column;
        padding: 20px 24px; gap: 6px; border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        transform: translateY(-150%); opacity: 0; visibility: hidden;
        transition: var(--transition); backdrop-filter: blur(14px);
    }
    .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .main-nav a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--border); width: 100%; }
    .main-nav a:last-child { border-bottom: 0; }
    .main-nav a::after { display: none; }
    .main-nav a.active { background: rgba(200,16,46,0.06); padding-left: 12px; border-radius: 8px; border-bottom-color: transparent; color: var(--primary); }
    .page-hero { padding: 70px 0 60px; }
    .page-hero h1 { font-size: 32px; }
    .page-hero p { font-size: 15px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom .legal { justify-content: center; }
    .section-head h2 { font-size: 28px; }
    .section { --space: 60px; }
}
@media screen and (max-width: 520px) {
    .container { padding: 0 18px; }
    .logo-main { font-size: 15px; }
    .logo-sub { display: none; }
    .page-hero h1 { font-size: 26px; }
    .hero-badge-row { gap: 8px; }
    .hero-badge { font-size: 12px; padding: 6px 14px; }
    .service-grid, .event-grid, .team-community { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-inner h2 { font-size: 26px; }
    .btn { width: 100%; }
    .cta-buttons { flex-direction: column; }
    .guide-list { padding: 4px 18px; }
    .guide-list-item { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* roulang page: category2 */
/* ============ 设计变量 ============ */
        :root {
            --primary: #c8102e;
            --primary-dark: #9e0d24;
            --primary-soft: #fdeef0;
            --gold: #d4a456;
            --gold-light: #f5e6c8;
            --dark: #141414;
            --darker: #0d0d0d;
            --bg-light: #f7f7f9;
            --text: #191919;
            --text-weak: #6e6e6e;
            --border: #e8e8ec;
            --white: #ffffff;
            --radius-lg: 22px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --shadow: 0 12px 40px rgba(20, 20, 20, 0.08);
            --shadow-lg: 0 24px 60px rgba(20, 20, 20, 0.13);
            --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
            --section-space: 100px;
        }

        /* ============ 基础重置与全局 ============ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background: var(--white);
            color: var(--text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5 {
            line-height: 1.2;
            font-weight: 700;
            color: var(--text);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
            position: relative;
        }
        .section-pad {
            padding: var(--section-space) 0;
        }
        .bg-light {
            background: var(--bg-light);
        }
        .text-center {
            text-align: center;
        }
        .section-head {
            margin-bottom: 56px;
            max-width: 640px;
        }
        .section-head.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2.4px;
            color: var(--primary);
            text-transform: uppercase;
        }
        .section-tag::before {
            content: "";
            width: 24px;
            height: 2px;
            background: var(--primary);
            border-radius: 3px;
            flex: none;
        }
        .section-head.center .section-tag::after {
            content: "";
            width: 24px;
            height: 2px;
            background: var(--primary);
            border-radius: 3px;
            flex: none;
        }
        .section-head h2 {
            font-size: 36px;
            margin-top: 16px;
            letter-spacing: 0.5px;
            color: var(--text);
        }
        .section-head p {
            font-size: 16px;
            color: var(--text-weak);
            margin-top: 14px;
            line-height: 1.75;
        }
        .section-head.light h2 {
            color: #fff;
        }
        .section-head.light p {
            color: rgba(255, 255, 255, 0.72);
        }
        .section-head.light .section-tag {
            color: var(--gold);
        }
        .section-head.light .section-tag::before {
            background: var(--gold);
        }

        /* ============ 按钮 ============ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            line-height: 1;
            border: 2px solid transparent;
            transition: all var(--transition);
            letter-spacing: 0.3px;
        }
        .btn i {
            font-size: 14px;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 6px 18px rgba(200, 16, 46, 0.24);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(200, 16, 46, 0.32);
        }
        .btn-outline {
            border-color: rgba(255, 255, 255, 0.72);
            color: #fff;
        }
        .btn-outline:hover {
            background: #fff;
            color: var(--dark);
            border-color: #fff;
            transform: translateY(-3px);
        }
        .btn-dark {
            background: var(--dark);
            color: #fff;
        }
        .btn-dark:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(20, 20, 20, 0.22);
        }
        .btn-light {
            background: #fff;
            color: var(--dark);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        .btn-light:hover {
            background: var(--gold);
            color: #fff;
            transform: translateY(-3px);
        }
        .btn:focus-visible {
            outline: 3px solid rgba(200, 16, 46, 0.45);
            outline-offset: 3px;
        }

        /* ============ 导航 ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 78px;
        }
        .brand-logo {
            display: inline-flex;
            flex-direction: column;
            line-height: 1.1;
            flex: none;
        }
        .logo-main {
            font-weight: 800;
            font-size: 19px;
            letter-spacing: 0.2px;
            color: var(--text);
        }
        .logo-main span {
            color: var(--primary);
        }
        .logo-sub {
            font-size: 10px;
            letter-spacing: 2.4px;
            color: var(--text-weak);
            margin-top: 5px;
            text-transform: uppercase;
            font-weight: 500;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 38px;
        }
        .main-nav a {
            font-size: 14px;
            font-weight: 500;
            color: #444;
            position: relative;
            padding: 10px 0;
            letter-spacing: 0.3px;
        }
        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 2px;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 3px;
            transition: width 0.32s ease;
        }
        .main-nav a:hover {
            color: var(--primary);
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }
        .main-nav a.active {
            color: var(--primary);
            font-weight: 600;
        }
        .nav-toggle {
            display: none;
            font-size: 24px;
            color: var(--text);
            padding: 8px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: var(--bg-light);
        }

        /* ============ Hero ============ */
        .hero {
            position: relative;
            padding: 140px 0 120px;
            background-size: cover;
            background-position: center;
            color: #fff;
            isolation: isolate;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(10, 10, 10, 0.92) 0%, rgba(12, 12, 12, 0.62) 48%, rgba(14, 14, 14, 0.22) 100%);
            z-index: -1;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 140px;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.08), transparent);
            z-index: -1;
        }
        .hero-inner {
            max-width: 680px;
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            padding: 9px 20px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.6px;
            color: #ffe9ec;
            margin-bottom: 28px;
        }
        .hero-eyebrow i {
            color: var(--gold);
        }
        .hero h1 {
            font-size: 56px;
            line-height: 1.08;
            color: #fff;
            letter-spacing: 1px;
            font-weight: 800;
            margin-bottom: 24px;
        }
        .hero p {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.84);
            max-width: 540px;
            margin-bottom: 36px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 44px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.18);
        }
        .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.78);
        }
        .hero-meta i {
            color: var(--gold);
            font-size: 15px;
        }

        /* ============ 深度复盘 ============ */
        .review-section {
            background: var(--white);
        }
        .review-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .review-image img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .review-image:hover img {
            transform: scale(1.03);
        }
        .review-image::after {
            content: "FIELD VIEW";
            position: absolute;
            left: 18px;
            bottom: 18px;
            background: rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(6px);
            color: #fff;
            font-size: 11px;
            letter-spacing: 2px;
            padding: 7px 14px;
            border-radius: 999px;
            font-weight: 600;
        }
        .review-content {
            padding-left: 40px;
        }
        .review-content h3 {
            font-size: 28px;
            margin-bottom: 18px;
            margin-top: 14px;
        }
        .review-content p {
            color: var(--text-weak);
            font-size: 15.5px;
            line-height: 1.85;
            margin-bottom: 24px;
        }
        .check-list {
            display: grid;
            gap: 14px;
            margin-bottom: 32px;
        }
        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: var(--text);
            font-weight: 500;
        }
        .check-list li i {
            color: var(--primary);
            margin-top: 5px;
            font-size: 15px;
            flex: none;
        }

        /* ============ 战术观察 ============ */
        .tactics-section {
            background: var(--bg-light);
        }
        .tactic-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform var(--transition), box-shadow var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .tactic-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        .tactic-img {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
        }
        .tactic-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.55s ease;
        }
        .tactic-card:hover .tactic-img img {
            transform: scale(1.06);
        }
        .tactic-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent 45%);
        }
        .tactic-body {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 6px 14px;
            border-radius: 999px;
            align-self: flex-start;
            margin-bottom: 16px;
        }
        .badge i {
            font-size: 12px;
        }
        .tactic-body h3 {
            font-size: 20px;
            margin-bottom: 12px;
            line-height: 1.35;
        }
        .tactic-body p {
            color: var(--text-weak);
            font-size: 14.5px;
            line-height: 1.75;
            margin-bottom: 18px;
            flex: 1;
        }
        .tactic-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }
        .tactic-link:hover {
            gap: 12px;
            color: var(--primary-dark);
        }

        /* ============ 球员观察 ============ */
        .player-section {
            background: var(--white);
        }
        .player-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 100%;
            min-height: 420px;
        }
        .player-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .player-content {
            padding-right: 20px;
        }
        .player-content p {
            color: var(--text-weak);
            font-size: 15.5px;
            margin-top: 14px;
            margin-bottom: 28px;
        }
        .player-list {
            display: grid;
            gap: 16px;
        }
        .player-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--bg-light);
            border-radius: 16px;
            padding: 18px 22px;
            border: 1px solid transparent;
            transition: all var(--transition);
        }
        .player-item:hover {
            border-color: rgba(200, 16, 46, 0.18);
            background: #fff;
            box-shadow: var(--shadow);
            transform: translateX(4px);
        }
        .player-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: var(--primary-soft);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            flex: none;
        }
        .player-info {
            flex: 1;
            min-width: 0;
        }
        .player-info h4 {
            font-size: 16px;
            margin-bottom: 3px;
            font-weight: 700;
        }
        .player-info p {
            font-size: 13px;
            color: var(--text-weak);
            margin: 0;
        }
        .player-indicator {
            text-align: right;
            flex: none;
        }
        .player-indicator strong {
            display: block;
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.1;
        }
        .player-indicator span {
            font-size: 12px;
            color: var(--text-weak);
        }

        /* ============ 球队数据概览 ============ */
        .stats-band {
            background: linear-gradient(125deg, #0d0d0d 0%, #1a1a1a 55%, #241016 100%);
            padding: 90px 0;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .stats-band::before {
            content: "";
            position: absolute;
            top: -120px;
            right: -80px;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(200, 16, 46, 0.25), transparent 60%);
            border-radius: 50%;
            pointer-events: none;
        }
        .stats-band .section-head {
            margin-bottom: 50px;
        }
        .stat-card {
            text-align: center;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 38px 20px;
            backdrop-filter: blur(6px);
            transition: all var(--transition);
            height: 100%;
        }
        .stat-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(212, 164, 86, 0.45);
            transform: translateY(-4px);
        }
        .stat-num {
            font-size: 50px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            letter-spacing: -1px;
            font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
        }
        .stat-num em {
            font-style: normal;
            color: var(--gold);
            font-size: 26px;
            margin-left: 2px;
            font-weight: 700;
        }
        .stat-label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            letter-spacing: 1.5px;
            margin-top: 14px;
            text-transform: uppercase;
        }

        /* ============ 赛程预告 ============ */
        .schedule-section {
            background: #fff;
        }
        .schedule-intro {
            padding-right: 40px;
        }
        .schedule-intro h2 {
            font-size: 36px;
            margin: 16px 0 14px;
        }
        .schedule-intro p {
            color: var(--text-weak);
            font-size: 15.5px;
            margin-bottom: 28px;
        }
        .schedule-note {
            background: var(--bg-light);
            border-left: 4px solid var(--primary);
            border-radius: 0 16px 16px 0;
            padding: 20px 24px;
            font-size: 14px;
            color: var(--text);
            line-height: 1.7;
        }
        .schedule-note i {
            color: var(--primary);
            margin-right: 6px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: "";
            position: absolute;
            left: 8px;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), var(--gold), transparent);
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            padding: 20px 0 28px 22px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }
        .timeline-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: -27px;
            top: 26px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid #fff;
            box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.28);
        }
        .timeline-item:nth-child(2)::before {
            background: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 164, 86, 0.3);
        }
        .timeline-item:nth-child(3)::before {
            background: var(--dark);
            box-shadow: 0 0 0 3px rgba(20, 20, 20, 0.2);
        }
        .tl-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.6px;
            color: var(--primary);
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .timeline-item h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .timeline-item p {
            color: var(--text-weak);
            font-size: 14.5px;
            line-height: 1.75;
            margin-bottom: 10px;
        }
        .tl-meta {
            font-size: 13px;
            color: var(--text-weak);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-light);
            padding: 6px 14px;
            border-radius: 999px;
        }
        .tl-meta i {
            color: var(--primary);
        }

        /* ============ FAQ ============ */
        .faq-section {
            background: var(--bg-light);
        }
        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
            display: grid;
            gap: 14px;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: box-shadow var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow);
        }
        .faq-item details {
            padding: 0;
        }
        .faq-item summary {
            padding: 22px 28px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            list-style: none;
            transition: color 0.3s;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: "\f107";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary);
            transition: transform 0.35s;
            font-size: 16px;
            flex: none;
        }
        .faq-item details[open] summary {
            color: var(--primary);
        }
        .faq-item details[open] summary::after {
            transform: rotate(180deg);
        }
        .faq-item details div {
            padding: 0 28px 22px;
        }
        .faq-item details p {
            color: var(--text-weak);
            font-size: 14.5px;
            line-height: 1.8;
        }

        /* ============ CTA ============ */
        .cta-band {
            position: relative;
            padding: 110px 0;
            background-size: cover;
            background-position: center;
            text-align: center;
            color: #fff;
            isolation: isolate;
        }
        .cta-band::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, rgba(9, 9, 9, 0.92), rgba(130, 12, 32, 0.68));
            z-index: -1;
        }
        .cta-band h2 {
            font-size: 40px;
            color: #fff;
            margin-bottom: 16px;
        }
        .cta-band p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.82);
            max-width: 560px;
            margin: 0 auto 36px;
            line-height: 1.8;
        }
        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        /* ============ 页脚 ============ */
        .site-footer {
            background: #0d0d0d;
            color: rgba(255, 255, 255, 0.6);
            padding: 80px 0 30px;
            font-size: 14px;
        }
        .site-footer .brand-logo {
            margin-bottom: 18px;
        }
        .site-footer .logo-main {
            color: #fff;
        }
        .site-footer .logo-main span {
            color: #ff5b6e;
        }
        .site-footer .footer-brand p {
            max-width: 340px;
            margin-top: 10px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.48);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 52px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-col h4 {
            color: #fff;
            font-size: 15px;
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            margin-bottom: 13px;
            transition: color 0.3s, padding-left 0.3s;
        }
        .footer-col a:hover {
            color: #ff5b6e;
            padding-left: 6px;
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
            padding-top: 28px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
        }
        .legal {
            display: flex;
            gap: 22px;
        }
        .legal a {
            color: rgba(255, 255, 255, 0.35);
            transition: color 0.3s;
        }
        .legal a:hover {
            color: #fff;
        }

        /* ============ 响应式 ============ */
        @media (max-width: 1024px) {
            .section-pad {
                --section-space: 80px;
            }
            .hero h1 {
                font-size: 46px;
            }
            .review-content {
                padding-left: 0;
                margin-top: 30px;
            }
            .player-content {
                padding-right: 0;
                margin-bottom: 30px;
            }
            .schedule-intro {
                padding-right: 0;
                margin-bottom: 36px;
            }
            .footer-grid {
                gap: 32px;
            }
        }
        @media (max-width: 900px) {
            .main-nav {
                position: fixed;
                top: 78px;
                right: -340px;
                width: 300px;
                height: calc(100vh - 78px);
                background: #fff;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 6px;
                padding: 36px;
                box-shadow: -24px 0 60px rgba(0, 0, 0, 0.12);
                border-left: 1px solid var(--border);
                transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
                z-index: 99;
                overflow-y: auto;
            }
            .main-nav.nav-open {
                right: 0;
            }
            .main-nav a {
                font-size: 17px;
                padding: 12px 0;
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            .main-nav a::after {
                display: none;
            }
            .main-nav a.active {
                color: var(--primary);
            }
            .nav-toggle {
                display: inline-flex;
            }
            .hero {
                padding: 100px 0 84px;
            }
            .hero h1 {
                font-size: 40px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 768px) {
            :root {
                --section-space: 64px;
            }
            .container {
                padding: 0 20px;
            }
            .section-head h2 {
                font-size: 30px;
            }
            .hero h1 {
                font-size: 34px;
            }
            .hero p {
                font-size: 15.5px;
            }
            .review-image img {
                height: 320px;
            }
            .stat-num {
                font-size: 40px;
            }
            .cta-band h2 {
                font-size: 32px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .header-inner {
                height: 68px;
            }
            .logo-main {
                font-size: 16px;
            }
            .logo-sub {
                font-size: 9px;
                letter-spacing: 1.8px;
            }
            .main-nav {
                top: 68px;
                height: calc(100vh - 68px);
                width: 100%;
                right: -100%;
                padding: 28px;
            }
            .hero {
                padding: 76px 0 60px;
            }
            .hero h1 {
                font-size: 29px;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-actions .btn {
                width: 100%;
            }
            .hero-meta {
                gap: 18px;
            }
            .section-head h2 {
                font-size: 26px;
            }
            .review-image img {
                height: 250px;
            }
            .tactic-body {
                padding: 22px;
            }
            .player-item {
                flex-wrap: wrap;
                padding: 16px;
            }
            .player-indicator {
                display: none;
            }
            .stat-card {
                padding: 26px 14px;
            }
            .stat-num {
                font-size: 34px;
            }
            .timeline {
                padding-left: 24px;
            }
            .faq-item summary {
                padding: 18px 20px;
                font-size: 15px;
            }
            .cta-band h2 {
                font-size: 28px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .legal {
                justify-content: center;
            }
        }
