/* roulang page: index */
:root{
  --primary:#FF4D00;
  --primary-deep:#E62E00;
  --accent:#D7FF3E;
  --dark:#1B222B;
  --light:#F6F7F9;
  --gray-bg:#EDF0F3;
  --white:#FFFFFF;
  --text:#1B222B;
  --text-muted:#6B7280;
  --border:#E7EAEE;
  --radius-lg:20px;
  --radius-md:14px;
  --radius-pill:999px;
  --shadow-sm:0 2px 12px rgba(27,34,43,.06);
  --shadow-hover:0 8px 30px rgba(27,34,43,.12);
  --space-section:72px;
  --header-h:68px;
  --font-main:-apple-system,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-main);
  background:var(--light);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit;transition:all .25s ease}
img{max-width:100%;height:auto;display:block}
button,input{font-family:inherit}
.container{max-width:1200px;padding-left:20px;padding-right:20px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:40px;padding:0 24px;border-radius:var(--radius-pill);
  font-size:14px;font-weight:600;line-height:1;
  border:none;cursor:pointer;transition:all .25s ease;
  text-decoration:none;white-space:nowrap;
}
.btn:focus{outline:2px solid rgba(255,77,0,.4);outline-offset:2px}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-deep));
  color:#fff !important;
}
.btn-primary:hover{
  background:linear-gradient(135deg,#ff6a2b,#f03a00);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(255,77,0,.28);
}
.btn-lg{height:48px;padding:0 30px;font-size:16px}
.btn-ghost-light{
  background:transparent;border:2px solid rgba(255,255,255,.8);
  color:#fff;height:48px;padding:0 28px;font-size:16px;font-weight:600;
  border-radius:var(--radius-pill);display:inline-flex;align-items:center;justify-content:center;
  transition:all .25s ease;text-decoration:none;
}
.btn-ghost-light:hover{background:#fff;color:var(--dark);transform:translateY(-2px)}
.btn-block{width:100%}

/* ===== Header ===== */
.site-header{
  background:#fff;
  border-bottom:1px solid var(--border);
  height:var(--header-h);
  position:sticky;top:0;z-index:1000;
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:var(--header-h);gap:20px;
}
.brand{
  display:flex;align-items:center;gap:10px;flex-shrink:0;
}
.brand-icon{
  width:40px;height:40px;border-radius:12px;
  background:linear-gradient(135deg,var(--primary),var(--primary-deep));
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;font-size:17px;flex-shrink:0;
}
.brand-text{
  font-size:22px;font-weight:700;color:var(--dark);letter-spacing:.5px;
}
.brand-text em{
  font-style:normal;
  background:linear-gradient(135deg,var(--primary),var(--primary-deep));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.site-nav{display:flex;gap:4px;align-items:center}
.nav-link{
  padding:8px 16px;border-radius:var(--radius-pill);
  color:var(--text);font-size:15px;font-weight:500;
  border:1px solid transparent;white-space:nowrap;
}
.nav-link:hover{color:var(--primary);background:rgba(255,77,0,.05)}
.nav-link.active{color:var(--primary);background:rgba(255,77,0,.08);border-color:rgba(255,77,0,.15)}
.header-actions{display:flex;align-items:center;gap:12px}
.search-box{
  display:flex;align-items:center;gap:8px;
  background:var(--light);border:1px solid var(--border);
  border-radius:var(--radius-pill);padding:0 14px;height:40px;width:200px;
}
.search-box i{color:var(--text-muted);font-size:14px;flex-shrink:0}
.search-box input{
  border:none;outline:none;background:transparent;font-size:14px;color:var(--text);width:100%;
}
.header-cta{height:40px;padding:0 20px;font-size:14px}
.nav-toggle{
  display:none;background:none;border:none;font-size:22px;color:var(--text);
  cursor:pointer;padding:6px;border-radius:8px;
}
.nav-toggle:hover{background:var(--gray-bg)}
.mobile-menu{
  display:none;position:fixed;top:var(--header-h);left:0;right:0;bottom:0;z-index:999;
  background:#fff;padding:20px 24px;flex-direction:column;gap:6px;
  border-top:1px solid var(--border);overflow-y:auto;
}
.mobile-menu.open{display:flex}
.mobile-link{
  padding:14px 12px;border-radius:12px;font-size:16px;font-weight:500;
  color:var(--text);border:1px solid transparent;
}
.mobile-link:hover,.mobile-link.active{color:var(--primary);background:rgba(255,77,0,.06)}
.mobile-actions{margin-top:16px;display:flex;flex-direction:column;gap:12px}
.mobile-actions input{
  height:44px;border:1px solid var(--border);border-radius:var(--radius-pill);
  padding:0 16px;font-size:14px;outline:none;width:100%;
}
.mobile-actions .btn{height:44px}

/* ===== Section base ===== */
.section{padding:var(--space-section) 0}
.section-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  margin-bottom:36px;
}
.section-head.center{justify-content:center;text-align:center;flex-direction:column;align-items:center;gap:8px}
.section-head h2{
  font-size:28px;font-weight:700;color:var(--text);margin:0;
  position:relative;padding-bottom:10px;
}
.section-head h2::after{
  content:'';position:absolute;left:0;bottom:0;width:44px;height:4px;
  background:linear-gradient(135deg,var(--primary),var(--primary-deep));
  border-radius:2px;
}
.section-head.center h2::after{left:50%;transform:translateX(-50%)}
.section-more{
  font-size:14px;font-weight:500;color:var(--text-muted);
  display:inline-flex;align-items:center;gap:6px;white-space:nowrap;
}
.section-more:hover{color:var(--primary)}
.section-more i{font-size:12px}

/* ===== Hero ===== */
.hero{
  position:relative;min-height:600px;
  background:var(--dark);display:flex;align-items:center;overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;background-size:cover;background-position:center;background-repeat:no-repeat;
  opacity:.85;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(27,34,43,.97) 0%,rgba(27,34,43,.82) 42%,rgba(27,34,43,.4) 100%);
}
.hero-content{position:relative;z-index:2;padding:80px 0 140px;width:100%}
.hero-main{max-width:640px}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(215,255,62,.1);border:1px solid rgba(215,255,62,.3);
  color:var(--accent);padding:6px 14px;border-radius:var(--radius-pill);
  font-size:13px;font-weight:500;margin-bottom:20px;
}
.hero-badge i{font-size:13px}
.hero-title{
  font-size:40px;font-weight:700;line-height:1.2;color:#fff;margin-bottom:16px;
  text-shadow:0 2px 20px rgba(0,0,0,.2);
}
.hero-subtitle{
  font-size:17px;line-height:1.7;color:rgba(255,255,255,.78);margin-bottom:32px;max-width:520px;
}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}
.hero-stats{
  position:absolute;bottom:30px;left:50%;transform:translateX(-50%);
  z-index:3;display:flex;
  background:rgba(27,34,43,.7);border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-pill);padding:12px 20px;backdrop-filter:blur(10px);
}
.stat-item{display:flex;flex-direction:column;align-items:center;padding:0 18px;position:relative}
.stat-item:not(:last-child)::after{
  content:'';position:absolute;right:0;top:20%;height:60%;width:1px;background:rgba(255,255,255,.15);
}
.stat-num{
  font-size:24px;font-weight:700;color:var(--accent);line-height:1.2;
  font-variant-numeric:tabular-nums;
}
.stat-label{font-size:12px;color:rgba(255,255,255,.7);margin-top:2px}

/* ===== Game cards ===== */
.game-card{
  background:#fff;border-radius:var(--radius-lg);padding:14px;
  box-shadow:var(--shadow-sm);transition:all .3s ease;height:100%;
  display:flex;flex-direction:column;
}
.game-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px)}
.game-cover{
  border-radius:14px;overflow:hidden;aspect-ratio:16/10;background:var(--gray-bg);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.game-cover img{width:100%;height:100%;object-fit:cover}
.game-info{flex:1;display:flex;flex-direction:column}
.game-info h3{font-size:18px;font-weight:700;margin-bottom:6px}
.game-info p{font-size:14px;color:var(--text-muted);margin-bottom:16px;line-height:1.5}
.game-foot{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:auto;padding-top:12px;border-top:1px solid var(--border);
}
.score-badge{
  display:inline-flex;align-items:center;gap:4px;
  background:rgba(215,255,62,.2);color:#5f7d00;font-size:13px;font-weight:600;
  padding:3px 10px;border-radius:var(--radius-pill);
}
.score-badge i{font-size:11px;color:var(--primary)}
.game-link{font-size:14px;font-weight:500;color:var(--text-muted)}
.game-link:hover{color:var(--primary)}
.game-link i{font-size:11px}

/* ===== Testimonials ===== */
.testimonials{background:var(--gray-bg)}
.testimonial-card{
  background:#fff;border-radius:var(--radius-lg);padding:24px;
  box-shadow:var(--shadow-sm);height:100%;display:flex;flex-direction:column;
}
.testimonial-stars{color:#FFB400;font-size:14px;margin-bottom:14px;letter-spacing:2px}
.testimonial-text{
  font-size:14px;color:var(--text);line-height:1.7;flex:1;margin-bottom:20px;
}
.testimonial-user{display:flex;align-items:center;gap:12px}
.testimonial-avatar{
  width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--primary),var(--primary-deep));
  display:flex;align-items:center;justify-content:center;color:#fff;font-size:16px;font-weight:600;flex-shrink:0;
}
.testimonial-name{font-size:14px;font-weight:600}
.testimonial-hours{font-size:12px;color:var(--text-muted);margin-top:2px}
.carousel-control-prev,.carousel-control-next{
  width:44px;height:44px;border-radius:50%;
  background:var(--white);opacity:1;top:50%;transform:translateY(-50%);
  box-shadow:var(--shadow-sm);border:1px solid var(--border);
}
.carousel-control-prev{left:-56px}
.carousel-control-next{right:-56px}
.carousel-control-prev:hover,.carousel-control-next:hover{background:var(--primary)}
.carousel-control-prev i,.carousel-control-next i{color:var(--text);font-size:16px}
.carousel-control-prev:hover i,.carousel-control-next:hover i{color:#fff}
@media(max-width:991px){
  .carousel-control-prev{left:-16px}.carousel-control-next{right:-16px}
}

/* ===== Safety ===== */
.safety-card{
  background:#fff;border-radius:var(--radius-lg);padding:40px 32px;
  box-shadow:var(--shadow-sm);
}
.safety-item{display:flex;flex-direction:column;align-items:center;text-align:center;height:100%}
.safety-icon{
  width:56px;height:56px;border-radius:16px;
  background:rgba(255,77,0,.08);color:var(--primary);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;margin-bottom:16px;
}
.safety-item h4{font-size:16px;font-weight:700;margin-bottom:8px}
.safety-item p{font-size:13px;color:var(--text-muted);line-height:1.5}

/* ===== CTA ===== */
.cta-card{
  background:var(--dark);border-radius:24px;padding:48px;
  display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;
  position:relative;overflow:hidden;
}
.cta-card::before{
  content:'';position:absolute;right:-60px;top:-60px;width:220px;height:220px;
  border-radius:50%;background:rgba(255,77,0,.15);
}
.cta-card::after{
  content:'';position:absolute;right:80px;bottom:-80px;width:160px;height:160px;
  border-radius:50%;background:rgba(215,255,62,.08);
}
.cta-content{position:relative;z-index:2}
.cta-content h2{font-size:24px;font-weight:700;color:#fff;margin-bottom:10px}
.cta-content p{font-size:15px;color:rgba(255,255,255,.7);margin:0}
.cta-content .btn{position:relative;z-index:2}

/* ===== News ===== */
.news-section{background:var(--light)}
.news-card{
  display:flex;flex-direction:column;
  background:#fff;border-radius:16px;padding:20px;height:100%;
  box-shadow:var(--shadow-sm);border:1px solid var(--border);
  transition:all .3s ease;color:var(--text);
}
.news-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px);border-color:transparent}
.news-meta{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:12px;gap:8px;
}
.news-tag{
  background:rgba(255,77,0,.08);color:var(--primary);
  font-size:12px;font-weight:600;padding:3px 10px;
  border-radius:var(--radius-pill);white-space:nowrap;
}
.news-meta time{font-size:12px;color:var(--text-muted);display:inline-flex;align-items:center;gap:4px}
.news-card h3{
  font-size:18px;font-weight:700;line-height:1.4;margin-bottom:10px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.news-card p{
  font-size:14px;color:var(--text-muted);line-height:1.6;margin-bottom:14px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  flex:1;
}
.news-more{
  font-size:13px;font-weight:600;color:var(--primary);
  display:inline-flex;align-items:center;gap:6px;margin-top:8px;
}
.news-more i{font-size:12px;transition:transform .25s}
.news-card:hover .news-more i{transform:translateX(4px)}
.news-card-horizontal{
  flex-direction:row;gap:20px;align-items:stretch;
}
.news-card-horizontal .news-meta{justify-content:flex-start;gap:14px}
.news-card-horizontal h3{font-size:20px;-webkit-line-clamp:1}
.news-card-horizontal p{-webkit-line-clamp:3}
@media(max-width:991px){
  .news-card-horizontal{flex-direction:column}
}
.news-empty{
  border:2px dashed var(--border);border-radius:16px;
  padding:48px;text-align:center;background:#fff;
}
.news-empty i{font-size:40px;color:var(--border);margin-bottom:12px;display:block}
.news-empty p{color:var(--text-muted);font-size:15px;margin:0}

/* ===== FAQ ===== */
.faq-section{background:#fff}
.accordion-item{border:1px solid var(--border);border-radius:14px !important;overflow:hidden;margin-bottom:12px}
.accordion-button{
  font-size:15px;font-weight:600;color:var(--text);padding:18px 20px;
  background:#fff;box-shadow:none;
}
.accordion-button:not(.collapsed){
  background:rgba(255,77,0,.04);color:var(--primary);box-shadow:none;
}
.accordion-button:focus{box-shadow:0 0 0 3px rgba(255,77,0,.12)}
.accordion-button::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF4D00' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 4h12l-6 8z'/%3E%3C/svg%3E")}
.accordion-body{font-size:14px;color:var(--text-muted);line-height:1.7;padding:0 20px 18px}

/* ===== Footer ===== */
.site-footer{
  background:var(--dark);color:rgba(255,255,255,.75);
  padding:56px 0 24px;
}
.footer-top{
  display:flex;justify-content:space-between;gap:40px;
  padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.1);
  flex-wrap:wrap;
}
.footer-brand{max-width:340px}
.brand-footer .brand-text{color:#fff}
.footer-brand p{font-size:14px;line-height:1.7;margin:16px 0 20px;color:rgba(255,255,255,.65)}
.social-icons{display:flex;gap:10px}
.social-icon{
  width:36px;height:36px;border-radius:10px;
  background:rgba(255,255,255,.08);color:rgba(255,255,255,.8);
  display:inline-flex;align-items:center;justify-content:center;font-size:15px;
}
.social-icon:hover{background:var(--primary);color:#fff;transform:translateY(-2px)}
.footer-links{
  display:flex;flex-wrap:wrap;gap:8px 24px;align-content:flex-start;
}
.footer-links a{font-size:15px;color:rgba(255,255,255,.75)}
.footer-links a:hover{color:var(--accent)}
.footer-bottom{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;
  padding-top:20px;font-size:13px;color:rgba(255,255,255,.45);
}

/* ===== Responsive ===== */
@media(max-width:991px){
  .site-nav{display:none}
  .header-actions .search-box{display:none}
  .header-cta{display:none}
  .nav-toggle{display:inline-flex}
  .hero-title{font-size:32px}
  .hero-stats{padding:10px 12px}
  .stat-item{padding:0 12px}
  .stat-num{font-size:20px}
  .section{padding:60px 0}
}
@media(max-width:767px){
  :root{--space-section:40px}
  .hero{min-height:520px}
  .hero-title{font-size:28px}
  .hero-subtitle{font-size:16px}
  .hero-stats{bottom:20px;padding:8px 6px;gap:4px}
  .stat-item{padding:0 10px}
  .stat-num{font-size:17px}
  .stat-label{font-size:11px}
  .hero-content{padding:60px 0 110px}
  .section-head h2{font-size:22px}
  .cta-card{padding:32px 24px;flex-direction:column;text-align:center}
  .footer-top{flex-direction:column;gap:28px}
  .footer-links{gap:8px 16px}
  .footer-bottom{flex-direction:column;text-align:center}
  .search-box{width:100%}
}
@media(max-width:575px){
  .hero-actions .btn{width:100%}
  .hero-actions .btn-ghost-light{width:100%}
  .safety-card{padding:24px 16px}
  .testimonial-card{padding:18px}
}

/* roulang page: category1 */
:root {
  --primary: #FF4D00;
  --primary-dark: #E62E00;
  --dark: #1B222B;
  --light-bg: #F6F7F9;
  --gray-bg: #EDF0F3;
  --accent: #D7FF3E;
  --text: #1B222B;
  --text-gray: #6B7280;
  --border: #E7EAEE;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 12px rgba(27,34,43,.06);
  --shadow-lg: 0 8px 30px rgba(27,34,43,.12);
  --space-section: 72px;
  --footer-padding: 56px 0 24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:-apple-system,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;background:var(--light-bg);color:var(--text);line-height:1.7;font-size:16px;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit;transition:color .2s}
button,input{font-family:inherit}
.container{max-width:1200px;padding-left:20px;padding-right:20px;margin:0 auto}
.section{padding:var(--space-section) 0}

/* ===== Header / Nav ===== */
.site-header{position:sticky;top:0;z-index:1000;background:#fff;border-bottom:1px solid var(--border)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:68px}
.brand{display:flex;align-items:center;gap:10px;flex-shrink:0}
.brand-icon{width:40px;height:40px;border-radius:12px;background:linear-gradient(135deg,var(--primary),var(--primary-dark));display:flex;align-items:center;justify-content:center;color:#fff;font-size:18px}
.brand-text{font-size:22px;font-weight:700;color:var(--dark);letter-spacing:.5px}
.brand-text em{font-style:normal;background:linear-gradient(135deg,var(--primary),var(--primary-dark));-webkit-background-clip:text;background-clip:text;color:transparent}
.site-nav{display:flex;gap:4px;margin:0 16px}
.nav-link{display:inline-block;padding:8px 16px;font-size:15px;font-weight:500;color:var(--text);border-radius:999px;transition:all .2s}
.nav-link:hover{color:var(--primary);background:rgba(255,77,0,.06)}
.nav-link.active{color:var(--primary);background:rgba(255,77,0,.08);font-weight:600}
.header-actions{display:flex;align-items:center;gap:12px;flex-shrink:0}
.search-box{display:flex;align-items:center;background:var(--gray-bg);border:1px solid transparent;border-radius:999px;padding:0 14px;height:40px;width:200px;transition:border-color .2s}
.search-box:focus-within{border-color:var(--primary);background:#fff}
.search-box i{color:var(--text-gray);font-size:14px;margin-right:8px}
.search-box input{border:none;outline:none;background:transparent;width:100%;font-size:14px;color:var(--text)}
.search-box input::placeholder{color:#9AA3AC}
.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;font-weight:600;border:none;cursor:pointer;transition:all .25s;text-decoration:none;line-height:1.2}
.btn-primary{background:linear-gradient(135deg,var(--primary),var(--primary-dark));color:#fff;padding:0 22px;height:40px;font-size:14px;box-shadow:0 4px 14px rgba(255,77,0,.25)}
.btn-primary:hover{filter:brightness(1.05);transform:translateY(-2px);box-shadow:0 6px 20px rgba(255,77,0,.3);color:#fff}
.btn-primary:active{transform:translateY(0)}
.btn-ghost{background:transparent;border:1px solid rgba(255,255,255,.7);color:#fff;padding:0 22px;height:40px;font-size:14px}
.btn-ghost:hover{background:#fff;color:var(--dark);transform:translateY(-2px)}
.btn-outline{background:#fff;border:1px solid var(--border);color:var(--text);padding:0 20px;height:40px;font-size:14px}
.btn-outline:hover{border-color:var(--primary);color:var(--primary);transform:translateY(-2px)}
.btn-lg{height:48px;padding:0 28px;font-size:16px}
.btn-sm{height:32px;padding:0 14px;font-size:13px}
.nav-toggle{display:none;background:none;border:none;font-size:22px;color:var(--text);cursor:pointer;padding:8px}

/* ===== Page Header ===== */
.page-header{background:linear-gradient(90deg,rgba(27,34,43,.95) 0%,rgba(27,34,43,.8) 50%,rgba(27,34,43,.6) 100%),url('/assets/images/backpic/back-1.png') center/cover;color:#fff;padding:64px 0 56px;position:relative;overflow:hidden}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:13px;color:rgba(255,255,255,.7);margin-bottom:20px}
.breadcrumb a{color:rgba(255,255,255,.8)}
.breadcrumb a:hover{color:var(--accent)}
.breadcrumb .sep{opacity:.5}
.breadcrumb .current{color:var(--accent)}
.page-header h1{font-size:32px;font-weight:700;margin:0 0 14px;letter-spacing:1px;line-height:1.3}
.page-header .page-desc{font-size:16px;color:rgba(255,255,255,.85);max-width:640px;margin-bottom:28px;line-height:1.8}
.header-cta{display:flex;flex-wrap:wrap;gap:14px}
.data-badges{display:flex;gap:14px;justify-content:flex-end;flex-wrap:wrap}
.badge-stat{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.12);border-radius:999px;padding:14px 22px;text-align:center;backdrop-filter:blur(4px)}
.badge-num{display:block;font-size:26px;font-weight:700;color:var(--accent);line-height:1.2;letter-spacing:.5px}
.badge-label{display:block;font-size:13px;color:rgba(255,255,255,.8);margin-top:4px}

/* ===== Section Titles ===== */
.section-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:32px}
.section-title{font-size:28px;font-weight:700;margin:0;color:var(--text);position:relative;padding-bottom:12px}
.section-title::after{content:'';position:absolute;left:0;bottom:0;width:44px;height:4px;border-radius:2px;background:linear-gradient(90deg,var(--primary),var(--primary-dark))}
.section-title.light{color:#fff}
.section-title.light::after{background:var(--accent)}
.section-more{font-size:14px;color:var(--text-gray);display:inline-flex;align-items:center;gap:6px;transition:color .2s}
.section-more:hover{color:var(--primary)}

/* ===== Feature Cards ===== */
.features-section{background:var(--light-bg)}
.feature-card{background:#fff;border-radius:var(--radius-lg);padding:28px 24px;box-shadow:var(--shadow-sm);border:1px solid var(--border);height:100%;transition:all .25s}
.feature-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.feature-icon{width:48px;height:48px;border-radius:14px;background:rgba(255,77,0,.1);display:flex;align-items:center;justify-content:center;color:var(--primary);font-size:20px;margin-bottom:16px}
.feature-card h3{font-size:18px;font-weight:700;margin-bottom:8px}
.feature-card p{font-size:14px;color:var(--text-gray);line-height:1.7;margin:0}

/* ===== Matches Section ===== */
.matches-section{background:var(--gray-bg)}
.match-grid .match-item{margin-bottom:24px}
.match-card{background:#fff;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);border:1px solid var(--border);transition:all .25s;height:100%;display:block}
.match-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.match-card .match-img{width:100%;aspect-ratio:16/9;overflow:hidden;background:var(--gray-bg);position:relative}
.match-card .match-img img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.match-card:hover .match-img img{transform:scale(1.03)}
.match-img .match-tag{position:absolute;top:12px;left:12px;background:rgba(27,34,43,.85);color:var(--accent);font-size:12px;font-weight:600;padding:4px 12px;border-radius:999px;letter-spacing:.5px}
.match-img .match-live{position:absolute;top:12px;right:12px;background:var(--primary);color:#fff;font-size:12px;font-weight:600;padding:4px 10px;border-radius:999px;display:flex;align-items:center;gap:4px}
.match-img .match-live i{font-size:10px;animation:pulse 1.2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.5}}
.match-card .match-body{padding:18px 18px 16px}
.match-card h4{font-size:18px;font-weight:700;margin-bottom:6px;color:var(--text)}
.match-card .match-sub{font-size:14px;color:var(--text-gray);margin-bottom:12px;line-height:1.6}
.match-meta{display:flex;align-items:center;justify-content:space-between;padding-top:12px;border-top:1px solid var(--border)}
.match-date{font-size:13px;color:var(--text-gray);display:flex;align-items:center;gap:6px}
.match-link{font-size:13px;font-weight:600;color:var(--primary)}
.match-link i{font-size:12px;margin-left:4px;transition:transform .2s}
.match-card:hover .match-link i{transform:translateX(3px)}

/* ===== Sidebar ===== */
.sidebar-card{background:#fff;border-radius:var(--radius-lg);padding:22px;box-shadow:var(--shadow-sm);border:1px solid var(--border);margin-bottom:24px}
.sidebar-card h3{font-size:16px;font-weight:700;margin-bottom:16px;padding-bottom:12px;border-bottom:1px solid var(--border);position:relative}
.sidebar-card h3::after{content:'';position:absolute;left:0;bottom:-1px;width:36px;height:3px;background:linear-gradient(90deg,var(--primary),var(--primary-dark));border-radius:2px}
.tag-cloud{display:flex;flex-wrap:wrap;gap:8px}
.tag-item{display:inline-block;background:var(--gray-bg);color:var(--text);font-size:13px;padding:5px 14px;border-radius:999px;transition:all .2s}
.tag-item:hover{background:rgba(255,77,0,.1);color:var(--primary)}
.top-list{list-style:none;padding:0;margin:0}
.top-list li{display:flex;align-items:center;gap:14px;padding:12px 0;border-bottom:1px solid var(--border);transition:background .2s}
.top-list li:last-child{border-bottom:none}
.top-list .rank-num{font-size:20px;font-weight:800;color:var(--primary);min-width:28px;font-style:italic}
.top-list .rank-name{font-size:15px;font-weight:600;color:var(--text);flex:1}
.top-list .rank-points{font-size:13px;color:var(--text-gray)}
.top-list li:hover{background:rgba(255,77,0,.03)}

/* ===== Flow Section ===== */
.flow-section{background:var(--dark);color:#fff;position:relative;overflow:hidden}
.flow-section::before{content:'';position:absolute;top:-50px;right:-50px;width:200px;height:200px;border-radius:50%;background:rgba(255,77,0,.12)}
.flow-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;margin-top:40px}
.flow-step{position:relative;padding:30px 22px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-lg);text-align:center}
.flow-step .step-num{font-size:14px;font-weight:700;color:var(--accent);letter-spacing:2px;margin-bottom:10px;display:block}
.flow-step .step-icon{width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-size:20px;color:var(--accent)}
.flow-step h4{font-size:17px;font-weight:700;margin-bottom:8px}
.flow-step p{font-size:13px;color:rgba(255,255,255,.7);line-height:1.6;margin:0}
.flow-step::after{content:'\f054';font-family:'Font Awesome 6 Free';font-weight:900;position:absolute;top:50%;right:-20px;transform:translateY(-50%);color:rgba(255,255,255,.3);font-size:14px}
.flow-step:last-child::after{display:none}

/* ===== Data Panel ===== */
.data-panel{background:var(--dark);border-radius:24px;position:relative;overflow:hidden;padding:44px 40px;border:1px solid rgba(255,255,255,.08)}
.data-panel::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--primary),var(--primary-dark),var(--accent))}
.data-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px}
.data-item{text-align:center;padding:16px 10px}
.data-num{font-size:38px;font-weight:800;color:var(--accent);line-height:1.1;letter-spacing:1px}
.data-label{font-size:14px;color:rgba(255,255,255,.75);margin-top:8px}
.data-divider{width:1px;background:rgba(255,255,255,.1)}
.data-section-inner{background:linear-gradient(135deg,rgba(255,77,0,.08),rgba(215,255,62,.05));border-radius:24px;padding:44px 40px;border:1px solid rgba(255,255,255,.08)}
.data-section-inner .data-num{font-size:42px}

/* ===== FAQ ===== */
.faq-section{background:var(--light-bg)}
.faq-wrapper{max-width:820px;margin:0 auto}
.accordion-item{background:#fff;border:1px solid var(--border);border-radius:var(--radius-md) !important;margin-bottom:14px;overflow:hidden;box-shadow:var(--shadow-sm)}
.accordion-button{background:#fff;font-size:16px;font-weight:600;color:var(--text);padding:18px 20px;border:none;box-shadow:none !important}
.accordion-button:not(.collapsed){background:#fff;color:var(--primary)}
.accordion-button::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M7 0a7 7 0 1 0 0 14A7 7 0 0 0 7 0zm1 7h2.5a.5.5 0 0 1 0 1H7v3.5a.5.5 0 0 1-1 0V7H3.5a.5.5 0 0 1 0-1H6V2.5a.5.5 0 0 1 1 0V6z' fill='%23FF4D00'/%3E%3C/svg%3E")}
.accordion-button:not(.collapsed)::after{filter:rotate(45deg)}
.accordion-body{padding:0 20px 18px;font-size:15px;color:var(--text-gray);line-height:1.8}

/* ===== CTA ===== */
.cta-section{padding:60px 0}
.cta-banner{background:linear-gradient(120deg,var(--primary),var(--primary-dark));border-radius:24px;padding:56px;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}
.cta-banner::before{content:'';position:absolute;top:-30px;right:40px;width:140px;height:140px;border-radius:50%;background:rgba(255,255,255,.08)}
.cta-banner::after{content:'';position:absolute;bottom:-60px;left:30%;width:180px;height:180px;border-radius:50%;background:rgba(255,255,255,.05)}
.cta-content{position:relative;z-index:1;flex:1;min-width:280px}
.cta-content h2{font-size:24px;font-weight:700;color:#fff;margin:0 0 10px}
.cta-content p{font-size:15px;color:rgba(255,255,255,.9);margin:0;max-width:520px}
.cta-buttons{display:flex;gap:14px;flex-shrink:0;position:relative;z-index:1}
.cta-buttons .btn-ghost{border-color:rgba(255,255,255,.7)}
.cta-buttons .btn-ghost:hover{background:#fff;color:var(--primary)}
.cta-buttons .btn-white{background:#fff;color:var(--primary);height:48px;padding:0 28px;font-size:16px;font-weight:700}
.cta-buttons .btn-white:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.15)}

/* ===== Footer ===== */
.site-footer{background:var(--dark);color:rgba(255,255,255,.75);padding:var(--footer-padding);margin-top:0}
.footer-top{display:flex;justify-content:space-between;gap:40px;flex-wrap:wrap;padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-brand{max-width:420px}
.brand-footer .brand-text{color:#fff}
.footer-brand p{font-size:14px;line-height:1.8;margin:16px 0 20px;color:rgba(255,255,255,.65)}
.social-icons{display:flex;gap:10px}
.social-icon{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.75);font-size:16px;transition:all .2s}
.social-icon:hover{background:var(--primary);color:#fff;transform:translateY(-2px)}
.footer-links{display:flex;flex-direction:column;gap:12px;padding-top:8px}
.footer-links a{font-size:14px;color:rgba(255,255,255,.7);transition:color .2s}
.footer-links a:hover{color:var(--accent)}
.footer-bottom{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;padding-top:24px;font-size:13px;color:rgba(255,255,255,.45)}

/* ===== Responsive ===== */
@media (max-width:992px){
  :root{--space-section:60px}
  .site-header{position:relative}
  .header-inner{height:56px}
  .site-nav{position:absolute;top:56px;left:0;right:0;background:#fff;flex-direction:column;padding:10px 20px;display:none;box-shadow:0 8px 20px rgba(27,34,43,.1);border-bottom:1px solid var(--border)}
  .site-nav.open{display:flex}
  .site-nav .nav-link{padding:12px 16px;border-radius:10px}
  .header-actions{position:absolute;top:56px;left:0;right:0;background:#fff;padding:10px 20px 18px;display:none;flex-direction:column;align-items:stretch;box-shadow:0 8px 20px rgba(27,34,43,.1);border-bottom:1px solid var(--border);z-index:999}
  .header-actions.open{display:flex}
  .search-box{width:100%}
  .header-actions .btn{height:40px}
  .nav-toggle{display:block}
  .flow-steps{grid-template-columns:repeat(2,1fr)}
  .flow-step::after{display:none}
  .data-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:768px){
  :root{--space-section:48px}
  .page-header{padding:48px 0 40px}
  .page-header h1{font-size:26px}
  .data-badges{justify-content:flex-start}
  .section-title{font-size:22px}
  .badge-stat{padding:10px 16px}
  .badge-num{font-size:20px}
  .flow-steps{grid-template-columns:1fr;gap:16px}
  .data-section-inner{padding:32px 24px}
  .data-grid{grid-template-columns:1fr 1fr;gap:20px}
  .data-panel{padding:32px 24px}
  .cta-banner{padding:40px 28px;flex-direction:column;align-items:flex-start}
  .cta-content h2{font-size:20px}
  .cta-content p{font-size:14px}
  .footer-top{flex-direction:column;gap:28px}
  .footer-links{flex-direction:row;flex-wrap:wrap;gap:16px}
}
@media (max-width:576px){
  .header-inner{height:52px}
  .site-nav{top:52px}
  .header-actions{top:52px}
  .page-header h1{font-size:24px}
  .page-desc{font-size:14px}
  .header-cta{flex-direction:column;align-items:stretch}
  .header-cta .btn{width:100%}
  .section-title{font-size:20px}
  .feature-card{padding:22px 18px}
  .data-grid{grid-template-columns:1fr;gap:12px}
  .data-num{font-size:32px}
  .cta-buttons{flex-direction:column;width:100%}
  .cta-buttons .btn{width:100%}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}

/* roulang page: article */
:root {
  --main-color: #FF4D00;
  --main-color-rgb: 255, 77, 0;
  --secondary-color: #E62E00;
  --dark-bg: #1B222B;
  --light-bg: #F6F7F9;
  --gray-bg: #EDF0F3;
  --white: #FFFFFF;
  --accent: #D7FF3E;
  --text-main: #1B222B;
  --text-sub: #5A6675;
  --text-light: #8A94A3;
  --border-color: #E7EAEE;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 2px 12px rgba(27,34,43,.06);
  --shadow-hover: 0 8px 30px rgba(27,34,43,.12);
  --space-section: 72px;
  --header-height: 68px;
  --font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--light-bg);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .2s ease;
}

img {
  max-width: 100%;
  display: block;
}

button, input {
  font-family: inherit;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Button System ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all .25s ease;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  color: #fff;
  border: none;
}

.btn-primary:hover, .btn-primary:focus {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 77, 0, .3);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-outline {
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover, .btn-outline:focus {
  border-color: var(--main-color);
  color: var(--main-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(27, 34, 43, .08);
}

.btn-sm {
  height: 40px;
  padding: 0 22px;
  font-size: 14px;
}

.btn-lg {
  height: 52px;
  padding: 0 34px;
  font-size: 17px;
}

/* ===== Header / Nav ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(27, 34, 43, .02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(255, 77, 0, .28);
}

.brand-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -.5px;
  line-height: 1.2;
}

.brand-text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--text-sub);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: all .2s ease;
}

.nav-link:hover {
  color: var(--main-color);
  background: rgba(255, 77, 0, .06);
}

.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-form {
  position: relative;
}

.search-form input {
  width: 220px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--light-bg);
  padding: 0 18px 0 38px;
  font-size: 14px;
  color: var(--text-main);
  transition: all .25s ease;
}

.search-form input::placeholder {
  color: var(--text-light);
}

.search-form input:focus {
  border-color: var(--main-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 77, 0, .12);
}

.search-form i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 14px;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  font-size: 22px;
  color: var(--text-main);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1;
}

.nav-toggle:hover {
  background: var(--gray-bg);
}

.mobile-actions {
  display: none;
}

/* ===== Article Page ===== */
.main-wrap {
  padding: 40px 0 0;
}

.article-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 48px;
  max-width: 960px;
  margin: 0 auto 40px;
  position: relative;
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav a {
  color: var(--text-light);
  transition: color .2s;
}

.breadcrumb-nav a:hover {
  color: var(--main-color);
}

.breadcrumb-nav .sep {
  color: #c0c7d0;
}

.breadcrumb-nav .current {
  color: var(--main-color);
  font-weight: 500;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-main);
  letter-spacing: -.5px;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta i {
  font-size: 14px;
  color: #b0b8c2;
}

.meta-cat {
  background: rgba(255, 77, 0, .08);
  color: var(--main-color) !important;
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px !important;
}

.meta-cat i {
  color: var(--main-color) !important;
}

.article-summary {
  border-left: 4px solid var(--main-color);
  background: linear-gradient(to right, rgba(255, 77, 0, .05), rgba(255, 77, 0, .01));
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #6B7280;
  font-style: italic;
  border-radius: 0 14px 14px 0;
  margin-bottom: 32px;
}

.article-body {
  font-size: 17px;
  line-height: 1.9;
  color: #3D4451;
  word-break: break-word;
}

.article-body > * + * {
  margin-top: 1.2em;
}

.article-body p {
  margin-bottom: 1.2em;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 1.6em;
  margin-bottom: .8em;
  letter-spacing: -.3px;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 1.4em;
  margin-bottom: .6em;
}

.article-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 1.2em;
  margin-bottom: .5em;
}

.article-body img {
  width: 100%;
  border-radius: 14px;
  margin: 24px 0;
  box-shadow: var(--shadow-card);
}

.article-body blockquote {
  border-left: 4px solid var(--main-color);
  background: var(--gray-bg);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-style: italic;
  color: #5A6675;
}

.article-body blockquote p {
  margin-bottom: 0;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin: 16px 0;
}

.article-body ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.article-body ol li {
  list-style: decimal;
  margin-bottom: 8px;
}

.article-body a {
  color: var(--main-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--secondary-color);
}

.article-body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
  font-size: 15px;
}

.article-body table th {
  background: var(--gray-bg);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  color: var(--text-main);
}

.article-body table td {
  padding: 12px 16px;
  border-top: 1px solid var(--border-color);
}

.article-body code {
  background: rgba(27, 34, 43, .06);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: .9em;
  font-family: "SFMono-Regular", Consolas, monospace;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--gray-bg);
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 500;
  transition: all .2s ease;
  cursor: default;
}

.tag:hover {
  background: rgba(255, 77, 0, .08);
  color: var(--main-color);
}

.article-back {
  margin-top: 28px;
}

.article-not-found {
  text-align: center;
  padding: 80px 20px;
}

.article-not-found i {
  font-size: 52px;
  color: #C5CCD4;
  margin-bottom: 20px;
  display: inline-block;
}

.article-not-found p {
  font-size: 18px;
  color: var(--text-sub);
  margin-bottom: 20px;
  font-weight: 500;
}

/* ===== Related Section ===== */
.related-section {
  background: var(--gray-bg);
  padding: 64px 0 72px;
  margin-top: 8px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -.5px;
  margin-bottom: 32px;
  position: relative;
  padding-left: 18px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--main-color), var(--secondary-color));
}

.related-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: block;
  height: 100%;
  transition: all .3s ease;
  border: 1px solid transparent;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 77, 0, .12);
}

.related-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.related-card-body {
  padding: 18px 20px 20px;
}

.related-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}

.related-card-title:hover {
  color: var(--main-color);
}

.related-card-date {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.related-card-date i {
  font-size: 12px;
}

.btn-back-wrap {
  margin-top: 36px;
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--dark-bg);
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, .7);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {
  max-width: 440px;
}

.brand-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff;
}

.brand-footer .brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 15px;
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
}

.brand-footer .brand-text {
  font-size: 18px;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  transition: all .25s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  color: #fff;
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-content: flex-start;
  padding-top: 44px;
}

.footer-links a {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  :root {
    --space-section: 60px;
    --header-height: 56px;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    display: none !important;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(27, 34, 43, .12);
    margin: 0;
    gap: 6px;
    z-index: 99;
  }
  
  .site-nav.mobile-open {
    display: flex;
  }

  .site-nav .nav-link {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 16px;
    width: 100%;
    justify-content: flex-start;
  }

  .mobile-actions {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
  }

  .mobile-actions .search-form {
    width: 100%;
  }

  .mobile-actions .search-form input {
    width: 100%;
  }

  .mobile-actions .btn {
    width: 100%;
  }

  .article-card {
    padding: 36px 28px;
    margin-bottom: 32px;
  }

  .article-title {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .container {
    padding: 0 20px;
  }

  .article-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .article-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .article-meta {
    gap: 10px 16px;
    font-size: 12px;
  }

  .article-summary {
    font-size: 14px;
    padding: 14px 18px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 21px;
  }

  .article-body h3 {
    font-size: 18px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .related-section {
    padding: 48px 0 56px;
  }

  .related-card-title {
    min-height: auto;
    font-size: 15px;
  }

  .footer-top {
    gap: 24px;
  }

  .footer-links {
    padding-top: 0;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding: 0 16px;
  }

  .brand-text {
    font-size: 18px;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .article-card {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .breadcrumb-nav {
    font-size: 12px;
    gap: 6px;
  }

  .breadcrumb-nav .current {
    max-width: 160px;
  }

  .article-title {
    font-size: 21px;
  }

  .article-meta {
    gap: 8px 12px;
  }

  .article-body {
    font-size: 15px;
    line-height: 1.85;
  }

  .article-body table {
    font-size: 13px;
  }

  .article-body table th,
  .article-body table td {
    padding: 10px 12px;
  }

  .article-body blockquote {
    padding: 14px 16px;
  }

  .section-title {
    font-size: 22px;
  }

  .related-card-body {
    padding: 14px 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 400px) {
  .article-back .btn {
    width: 100%;
  }
}

/* roulang page: category3 */
:root {
      --primary: #FF4D00;
      --primary-dark: #E62E00;
      --accent: #D7FF3E;
      --dark: #1B222B;
      --dark-2: #232D38;
      --light: #F6F7F9;
      --light-2: #EDF0F3;
      --white: #FFFFFF;
      --text: #2C353D;
      --text-light: #6C7A89;
      --border: #E7EAEE;
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-sm: 8px;
      --radius-pill: 999px;
      --shadow-sm: 0 2px 12px rgba(27, 34, 43, .06);
      --shadow-lg: 0 8px 30px rgba(27, 34, 43, .12);
      --transition: all .25s ease;
      --font-main: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    }
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: var(--font-main);
      background: var(--light);
      color: var(--text);
      line-height: 1.6;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }
    img {
      max-width: 100%;
      display: block;
    }
    button,
    input {
      font-family: inherit;
    }

    .container {
      max-width: 1240px;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* ===== 导航 ===== */
    .site-header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
      height: 68px;
    }
    .site-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .brand-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
    }
    .brand-text {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: 1px;
      white-space: nowrap;
    }
    .brand-text em {
      font-style: normal;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .site-nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .nav-link {
      padding: 8px 18px;
      font-size: 15px;
      font-weight: 500;
      color: var(--text);
      border-radius: var(--radius-pill);
      transition: var(--transition);
    }
    .nav-link:hover {
      background: var(--light-2);
      color: var(--primary);
    }
    .nav-link.active {
      background: linear-gradient(135deg, rgba(255, 77, 0, .1), rgba(230, 46, 0, .1));
      color: var(--primary);
      font-weight: 600;
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .header-search {
      position: relative;
    }
    .header-search input {
      width: 200px;
      height: 38px;
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      padding: 0 38px 0 16px;
      font-size: 14px;
      background: var(--light);
      transition: var(--transition);
      outline: none;
    }
    .header-search input:focus {
      border-color: var(--primary);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(255, 77, 0, .12);
    }
    .header-search i {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-light);
      font-size: 14px;
      pointer-events: none;
    }
    .btn-primary-custom {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      height: 40px;
      padding: 0 24px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      border: none;
      border-radius: var(--radius-pill);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-primary-custom:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 77, 0, .3);
      filter: brightness(1.05);
      color: #fff;
    }
    .btn-ghost-light {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      height: 40px;
      padding: 0 24px;
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .6);
      border-radius: var(--radius-pill);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-ghost-light:hover {
      background: #fff;
      color: var(--dark);
      border-color: #fff;
      transform: translateY(-2px);
    }

    .nav-toggle {
      display: none;
      width: 40px;
      height: 40px;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 18px;
      color: var(--dark);
      cursor: pointer;
    }

    @media (max-width: 991px) {
      .site-header {
        height: 56px;
      }
      .brand-text {
        font-size: 18px;
      }
      .brand-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
        border-radius: 10px;
      }
      .site-nav {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 20px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(27, 34, 43, .1);
        gap: 4px;
      }
      .site-nav.open {
        display: flex;
      }
      .nav-link {
        display: block;
        padding: 12px 16px;
        width: 100%;
        text-align: center;
      }
      .nav-toggle {
        display: block;
      }
      .header-search {
        display: none;
      }
      .header-actions .btn-primary-custom {
        height: 36px;
        padding: 0 18px;
        font-size: 13px;
      }
    }
    @media (max-width: 520px) {
      .brand-text {
        font-size: 16px;
      }
      .header-actions .btn-primary-custom {
        padding: 0 14px;
        font-size: 12px;
      }
      .brand-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
      }
    }

    /* ===== 面包屑 ===== */
    .breadcrumb-bar {
      padding: 18px 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }
    .breadcrumb-bar .breadcrumb {
      margin: 0;
      font-size: 13px;
      color: var(--text-light);
    }
    .breadcrumb-bar .breadcrumb a:hover {
      color: var(--primary);
    }
    .breadcrumb-bar .breadcrumb-item.active {
      color: var(--primary);
    }

    /* ===== 分类页头部 ===== */
    .category-hero {
      background: var(--dark);
      padding: 48px 0 42px;
      position: relative;
      background-image: url('/assets/images/backpic/back-3.webp');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    .category-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(27, 34, 43, .95) 30%, rgba(27, 34, 43, .65) 70%, rgba(27, 34, 43, .35));
    }
    .category-hero .container {
      position: relative;
      z-index: 2;
    }
    .category-hero h1 {
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      letter-spacing: 2px;
    }
    .category-hero h1 span {
      background: linear-gradient(135deg, var(--primary), #ff7a3d);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .category-hero p {
      font-size: 14px;
      color: rgba(255, 255, 255, .8);
      max-width: 640px;
      margin-bottom: 0;
    }
    .category-hero .hero-tags {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .hero-tag {
      display: inline-block;
      padding: 5px 14px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius-pill);
      color: rgba(255, 255, 255, .9);
      font-size: 12px;
      backdrop-filter: blur(6px);
    }
    .hero-tag i {
      color: var(--accent);
      margin-right: 4px;
    }
    @media (max-width: 768px) {
      .category-hero {
        padding: 36px 0 30px;
        background-attachment: scroll;
      }
      .category-hero h1 {
        font-size: 24px;
      }
    }

    /* ===== 搜索条 ===== */
    .game-search-wrap {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      padding: 24px;
      margin-top: -24px;
      position: relative;
      z-index: 10;
    }
    .game-search-form {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .game-search-form .form-control {
      flex: 1;
      min-width: 220px;
      height: 46px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border);
      padding: 0 20px;
      font-size: 14px;
      transition: var(--transition);
    }
    .game-search-form .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255, 77, 0, .1);
    }
    .game-search-form .btn-primary-custom {
      height: 46px;
      padding: 0 32px;
      flex-shrink: 0;
    }
    @media (max-width: 520px) {
      .game-search-form {
        flex-direction: column;
      }
      .game-search-form .btn-primary-custom {
        width: 100%;
        justify-content: center;
      }
    }

    /* ===== 游戏资料卡片 ===== */
    .section-padding {
      padding: 72px 0;
    }
    @media (max-width: 991px) {
      .section-padding {
        padding: 60px 0;
      }
    }
    @media (max-width: 575px) {
      .section-padding {
        padding: 40px 0;
      }
    }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
      position: relative;
    }
    .section-title::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 22px;
      background: linear-gradient(180deg, var(--primary), var(--primary-dark));
      border-radius: 2px;
      margin-right: 12px;
      vertical-align: -3px;
    }
    .section-sub {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 32px;
      padding-left: 16px;
    }
    @media (max-width: 575px) {
      .section-title {
        font-size: 22px;
      }
    }

    .game-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      height: 100%;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .game-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .game-card-img {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }
    .game-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }
    .game-card:hover .game-card-img img {
      transform: scale(1.04);
    }
    .game-card-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(27, 34, 43, .4));
    }
    .game-hot-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--accent);
      color: #1B222B;
      font-size: 12px;
      font-weight: 700;
      padding: 3px 12px;
      border-radius: var(--radius-pill);
      z-index: 2;
    }
    .game-type-tag {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(27, 34, 43, .75);
      color: #fff;
      font-size: 12px;
      padding: 3px 12px;
      border-radius: var(--radius-pill);
      z-index: 2;
      backdrop-filter: blur(4px);
    }
    .game-card-body {
      padding: 18px 20px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .game-card-body h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
      line-height: 1.4;
    }
    .game-card-body h3 a:hover {
      color: var(--primary);
    }
    .game-desc {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .game-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 14px;
      border-top: 1px solid var(--border);
    }
    .game-stat {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text-light);
    }
    .game-stat i {
      color: var(--primary);
    }
    .game-stat .rating {
      background: rgba(215, 255, 62, .25);
      color: #5A7F00;
      font-weight: 600;
      padding: 2px 10px;
      border-radius: var(--radius-pill);
      font-size: 12px;
    }
    .game-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
    }
    .game-link i {
      transition: transform .25s ease;
    }
    .game-link:hover i {
      transform: translateX(4px);
    }

    /* ===== 侧边栏 ===== */
    .sidebar-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      padding: 24px;
      margin-bottom: 24px;
    }
    .sidebar-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 18px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--light-2);
      position: relative;
    }
    .sidebar-title::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 36px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--primary-dark));
      border-radius: 2px;
    }
    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .tag-item {
      display: inline-block;
      padding: 5px 14px;
      background: var(--light);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      font-size: 13px;
      color: var(--text);
      transition: var(--transition);
    }
    .tag-item:hover {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      border-color: transparent;
      transform: translateY(-2px);
    }
    .hot-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .hot-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 0;
      border-bottom: 1px dashed var(--border);
      font-size: 14px;
    }
    .hot-list li:last-child {
      border-bottom: none;
    }
    .hot-list .num {
      font-weight: 700;
      font-size: 18px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      min-width: 24px;
      text-align: center;
    }
    .hot-list a {
      flex: 1;
      color: var(--text);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .hot-list a:hover {
      color: var(--primary);
    }
    .hot-list .hot-score {
      font-size: 12px;
      color: var(--text-light);
      background: var(--light);
      padding: 2px 8px;
      border-radius: 6px;
      flex-shrink: 0;
    }
    .sidebar-tip {
      background: linear-gradient(135deg, rgba(255, 77, 0, .06), rgba(230, 46, 0, .06));
      border: 1px solid rgba(255, 77, 0, .15);
      border-radius: var(--radius-md);
      padding: 14px 16px;
      font-size: 13px;
      color: var(--text);
      line-height: 1.8;
    }
    .sidebar-tip i {
      color: var(--primary);
      margin-right: 4px;
    }

    /* ===== 分页 ===== */
    .pagination-wrap {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }
    .pagination-custom {
      display: flex;
      gap: 8px;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .pagination-custom .page-item .page-link {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50% !important;
      border: 1px solid var(--border);
      background: var(--white);
      color: var(--text);
      font-size: 14px;
      transition: var(--transition);
    }
    .pagination-custom .page-item .page-link:hover {
      background: var(--light-2);
      color: var(--primary);
      border-color: var(--primary);
    }
    .pagination-custom .page-item.active .page-link {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-color: transparent;
      color: #fff;
      font-weight: 600;
    }
    .pagination-custom .page-item.disabled .page-link {
      opacity: .4;
      pointer-events: none;
    }

    /* ===== 游戏攻略 ===== */
    .guide-section {
      background: var(--white);
    }
    .guide-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 20px 0;
      border-bottom: 1px solid var(--light-2);
      transition: var(--transition);
    }
    .guide-item:last-child {
      border-bottom: none;
    }
    .guide-item:hover {
      transform: translateX(6px);
    }
    .guide-num {
      font-size: 32px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      opacity: .25;
      min-width: 52px;
      text-align: center;
    }
    .guide-info {
      flex: 1;
    }
    .guide-info h4 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .guide-info h4 a:hover {
      color: var(--primary);
    }
    .guide-info p {
      font-size: 13px;
      color: var(--text-light);
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .guide-meta {
      font-size: 13px;
      color: var(--text-light);
      text-align: right;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: flex-end;
    }
    .guide-meta .view-count {
      color: var(--text-light);
      font-size: 12px;
    }
    @media (max-width: 575px) {
      .guide-num {
        font-size: 24px;
        min-width: 40px;
      }
      .guide-meta {
        display: none;
      }
    }

    /* ===== 游戏类型 ===== */
    .cat-section {
      background: var(--light-2);
    }
    .cat-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }
    .cat-tab {
      padding: 8px 20px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      font-size: 14px;
      color: var(--text);
      cursor: pointer;
      transition: var(--transition);
      font-weight: 500;
    }
    .cat-tab:hover {
      border-color: var(--primary);
      color: var(--primary);
    }
    .cat-tab.active {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      border-color: transparent;
      font-weight: 600;
    }

    /* ===== FAQ ===== */
    .faq-section {
      background: var(--dark);
    }
    .faq-section .section-title {
      color: #fff;
    }
    .faq-section .section-sub {
      color: rgba(255, 255, 255, .7);
    }
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    @media (max-width: 768px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }
    .faq-item {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius-lg);
      padding: 24px;
      transition: var(--transition);
    }
    .faq-item:hover {
      background: rgba(255, 255, 255, .09);
      border-color: rgba(255, 77, 0, .4);
    }
    .faq-item h4 {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .faq-item h4 i {
      color: var(--primary);
      font-size: 14px;
    }
    .faq-item p {
      font-size: 14px;
      color: rgba(255, 255, 255, .7);
      line-height: 1.8;
      margin: 0;
    }

    /* ===== CTA ===== */
    .cta-section {
      padding: 64px 0;
      background: var(--white);
    }
    .cta-card {
      background: var(--dark);
      border-radius: 24px;
      padding: 44px 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      position: relative;
      overflow: hidden;
    }
    .cta-card::after {
      content: '';
      position: absolute;
      right: -60px;
      top: -60px;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(255, 77, 0, .3), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .cta-card::before {
      content: '';
      position: absolute;
      right: 80px;
      bottom: -100px;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(215, 255, 62, .15), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .cta-info {
      position: relative;
      z-index: 2;
    }
    .cta-info h2 {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .cta-info p {
      font-size: 15px;
      color: rgba(255, 255, 255, .75);
      margin: 0;
    }
    .cta-btn-group {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
      flex-shrink: 0;
    }
    @media (max-width: 991px) {
      .cta-card {
        flex-direction: column;
        padding: 32px 28px;
        text-align: center;
      }
      .cta-btn-group {
        justify-content: center;
      }
    }
    @media (max-width: 520px) {
      .cta-card {
        padding: 28px 20px;
      }
      .cta-info h2 {
        font-size: 20px;
      }
    }

    /* ===== 页脚 ===== */
    .site-footer {
      background: var(--dark);
      padding: 56px 0 24px;
      color: rgba(255, 255, 255, .7);
    }
    .footer-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }
    .footer-brand {
      max-width: 460px;
    }
    .brand-footer .brand-text {
      color: #fff;
    }
    .brand-footer .brand-text em {
      background: linear-gradient(135deg, var(--primary), #ff7a3d);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .footer-brand p {
      font-size: 14px;
      line-height: 1.8;
      margin: 16px 0 18px;
      color: rgba(255, 255, 255, .65);
    }
    .social-icons {
      display: flex;
      gap: 10px;
    }
    .social-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, .08);
      border-radius: 12px;
      color: rgba(255, 255, 255, .8);
      font-size: 16px;
      transition: var(--transition);
    }
    .social-icon:hover {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      transform: translateY(-3px);
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 120px;
    }
    .footer-links a {
      font-size: 14px;
      color: rgba(255, 255, 255, .7);
      transition: var(--transition);
      padding-left: 0;
    }
    .footer-links a:hover {
      color: var(--primary);
      padding-left: 6px;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      padding-top: 20px;
      font-size: 13px;
      color: rgba(255, 255, 255, .45);
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        gap: 24px;
      }
    }

    /* ===== 工具类 ===== */
    .mb-sm {
      margin-bottom: 16px;
    }
    .mt-sm {
      margin-top: 16px;
    }
    .flex-center {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (max-width: 768px) {
      .row-main {
        flex-direction: column-reverse;
      }
    }

/* roulang page: category2 */
:root {
            --primary: #FF4D00;
            --primary-dark: #E62E00;
            --primary-light: #FFF0EB;
            --accent: #D7FF3E;
            --dark: #1B222B;
            --dark-soft: #232D36;
            --page-bg: #F6F7F9;
            --gray-bg: #EDF0F3;
            --white: #FFFFFF;
            --text-main: #1B222B;
            --text-muted: #6C757D;
            --border: #E7EAEE;
            --card-radius: 20px;
            --mid-radius: 14px;
            --pill-radius: 999px;
            --shadow: 0 2px 12px rgba(27, 34, 43, .06);
            --shadow-hover: 0 8px 30px rgba(27, 34, 43, .12);
            --space-section: 72px;
            --font-sans: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            background: var(--page-bg);
            color: var(--text-main);
            line-height: 1.6;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color .2s;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }
        .container {
            max-width: 1200px;
        }
        .section-padding {
            padding: var(--space-section) 0;
        }
        .bg-gray {
            background: var(--gray-bg);
        }
        .bg-dark {
            background: var(--dark);
        }
        .section-head {
            text-align: center;
            margin-bottom: 44px;
        }
        .section-head h2 {
            font-size: 28px;
            font-weight: 700;
            margin: 0 0 10px;
            color: var(--text-main);
        }
        .section-head p {
            font-size: 15px;
            color: var(--text-muted);
            margin: 0;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }
        .section-head.light h2 {
            color: #fff;
        }
        .section-head.light p {
            color: rgba(255, 255, 255, .7);
        }
        .section-head-with-link {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 32px;
        }
        .section-head-with-link h2 {
            font-size: 28px;
            font-weight: 700;
            margin: 0;
        }
        .section-head-with-link .section-more {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .section-head-with-link .section-more:hover {
            color: var(--primary-dark);
            gap: 10px;
        }

        /* Header */
        .site-header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1050;
        }
        .header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 16px;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            box-shadow: 0 4px 14px rgba(255, 77, 0, .28);
        }
        .brand-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: .5px;
        }
        .brand-text em {
            font-style: normal;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .site-nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .site-nav .nav-link {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            padding: 8px 16px;
            border-radius: var(--pill-radius);
            transition: background .2s, color .2s;
        }
        .site-nav .nav-link:hover {
            background: var(--gray-bg);
            color: var(--primary);
        }
        .site-nav .nav-link.active {
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 600;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .search-box {
            position: relative;
            display: flex;
            align-items: center;
            width: 200px;
        }
        .search-box i {
            position: absolute;
            left: 14px;
            color: var(--text-muted);
            font-size: 13px;
            pointer-events: none;
        }
        .search-box input {
            width: 100%;
            height: 36px;
            border: 1px solid var(--border);
            border-radius: var(--pill-radius);
            background: var(--page-bg);
            padding: 0 14px 0 36px;
            font-size: 13px;
            color: var(--text-main);
            transition: border-color .2s, box-shadow .2s;
        }
        .search-box input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 77, 0, .12);
            background: #fff;
        }
        .btn-cta {
            height: 36px;
            padding: 0 20px;
            font-size: 14px;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border);
            width: 40px;
            height: 40px;
            border-radius: 10px;
            font-size: 16px;
            color: var(--text-main);
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .2s, border-color .2s;
        }
        .mobile-toggle:hover {
            background: var(--gray-bg);
            border-color: var(--primary);
        }
        .mobile-collapse {
            border-top: 1px solid var(--border);
            background: #fff;
            padding: 16px 0 20px;
        }
        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-bottom: 16px;
        }
        .mobile-nav-link {
            padding: 10px 16px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            background: var(--page-bg);
        }
        .mobile-nav-link:hover {
            background: var(--gray-bg);
            color: var(--primary);
        }
        .mobile-nav-link.active {
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 600;
        }
        .mobile-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .mobile-actions .search-box {
            flex: 1;
            min-width: 180px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            padding: 0 26px;
            border-radius: var(--pill-radius);
            font-size: 14px;
            font-weight: 600;
            border: 1px solid transparent;
            transition: all .2s ease;
            cursor: pointer;
        }
        .btn-lg {
            height: 48px;
            padding: 0 34px;
            font-size: 16px;
        }
        .btn-sm {
            height: 32px;
            padding: 0 16px;
            font-size: 13px;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 14px rgba(255, 77, 0, .24);
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, #FF5C1A, #FF3300);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 77, 0, .32);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(255, 77, 0, .2);
        }
        .btn-outline {
            background: #fff;
            color: var(--text-main);
            border: 1px solid var(--border);
        }
        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .btn-ghost {
            background: rgba(255, 255, 255, .08);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .6);
        }
        .btn-ghost:hover {
            background: #fff;
            color: var(--dark);
            border-color: #fff;
            transform: translateY(-2px);
        }

        /* Page Hero */
        .page-hero {
            background: linear-gradient(to right, rgba(27, 34, 43, .95), rgba(27, 34, 43, .72), rgba(27, 34, 43, .48)), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
            padding: 72px 0 96px;
            color: #fff;
            position: relative;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--page-bg), transparent);
            pointer-events: none;
        }
        .page-hero-content {
            max-width: 640px;
        }
        .page-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .2);
            padding: 6px 16px;
            border-radius: var(--pill-radius);
            font-size: 13px;
            color: var(--accent);
            margin-bottom: 20px;
        }
        .page-hero h1 {
            font-size: 40px;
            font-weight: 700;
            margin: 0 0 14px;
            letter-spacing: 1px;
        }
        .page-hero-sub {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, .85);
            margin-bottom: 28px;
            max-width: 560px;
        }
        .page-hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hero-stats {
            display: flex;
            gap: 20px;
            margin-top: 48px;
            flex-wrap: wrap;
        }
        .stat-item {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 14px;
            padding: 14px 22px;
            display: flex;
            flex-direction: column;
            min-width: 120px;
            backdrop-filter: blur(4px);
        }
        .stat-num {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.3;
        }
        .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, .8);
            margin-top: 2px;
        }

        /* Feature Cards */
        .feature-card {
            background: #fff;
            border-radius: var(--card-radius);
            padding: 32px 26px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            height: 100%;
            transition: transform .25s, box-shadow .25s, border-color .25s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255, 77, 0, .2);
        }
        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 18px;
            transition: background .2s, color .2s;
        }
        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
        }
        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .feature-card p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.7;
        }

        /* Game Cards */
        .game-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--card-radius);
            overflow: hidden;
            display: flex;
            min-height: 220px;
            transition: transform .25s, box-shadow .25s, border-color .25s;
        }
        .game-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255, 77, 0, .15);
        }
        .game-card-cover {
            flex: 0 0 38%;
            position: relative;
            overflow: hidden;
        }
        .game-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .4s;
        }
        .game-card:hover .game-card-cover img {
            transform: scale(1.04);
        }
        .game-card-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, transparent 60%, rgba(0, 0, 0, .08));
        }
        .game-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
            background: var(--accent);
            color: var(--dark);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: var(--pill-radius);
        }
        .game-card-body {
            flex: 1;
            padding: 22px 22px 18px;
            display: flex;
            flex-direction: column;
        }
        .game-card-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .game-card-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 14px;
            flex-grow: 1;
        }
        .game-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 14px;
        }
        .tag {
            display: inline-flex;
            align-items: center;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 12px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: var(--pill-radius);
        }
        .tag-gray {
            background: var(--gray-bg);
            color: var(--text-muted);
        }
        .game-card-meta {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
            padding-top: 12px;
        }
        .game-card-meta span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .game-card-meta i {
            color: var(--primary);
            font-size: 12px;
        }

        /* Scenario */
        .scenario-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: var(--card-radius);
            padding: 30px 24px;
            height: 100%;
            transition: background .25s, transform .25s, border-color .25s;
        }
        .scenario-card:hover {
            background: rgba(255, 255, 255, .09);
            transform: translateY(-3px);
            border-color: var(--accent);
        }
        .scenario-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(255, 255, 255, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent);
            margin-bottom: 18px;
        }
        .scenario-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }
        .scenario-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, .7);
            line-height: 1.7;
            margin: 0;
        }

        /* Steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            counter-reset: step;
        }
        .step-item {
            text-align: center;
            padding: 32px 20px;
            background: #fff;
            border-radius: var(--card-radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            position: relative;
            transition: transform .25s, box-shadow .25s;
        }
        .step-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .step-num {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(255, 77, 0, .24);
        }
        .step-item h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .step-item p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }

        /* FAQ */
        .custom-accordion .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--mid-radius) !important;
            overflow: hidden;
            margin-bottom: 12px;
            box-shadow: none;
            background: #fff;
        }
        .custom-accordion .accordion-button {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            background: #fff;
            padding: 16px 20px;
            border: none;
            box-shadow: none;
        }
        .custom-accordion .accordion-button:not(.collapsed) {
            background: var(--primary-light);
            color: var(--primary);
        }
        .custom-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }
        .custom-accordion .accordion-body {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            padding: 4px 20px 18px;
        }

        /* CTA */
        .cta-box {
            background: linear-gradient(120deg, var(--dark) 0%, #202B34 55%, #2A2F3A 100%);
            border-radius: 24px;
            padding: 56px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute;
            right: -60px;
            top: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 77, 0, .35), transparent 70%);
            pointer-events: none;
        }
        .cta-box::after {
            content: '';
            position: absolute;
            left: 30%;
            bottom: -70px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(215, 255, 62, .18), transparent 70%);
            pointer-events: none;
        }
        .cta-content {
            position: relative;
            z-index: 1;
        }
        .cta-content h2 {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 8px;
        }
        .cta-content p {
            font-size: 15px;
            color: rgba(255, 255, 255, .75);
            margin: 0;
        }
        .cta-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            padding: 56px 0 24px;
            color: rgba(255, 255, 255, .75);
        }
        .footer-top {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }
        .footer-brand {
            max-width: 420px;
        }
        .brand-footer .brand-text {
            color: #fff;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            margin: 16px 0 18px;
        }
        .social-icons {
            display: flex;
            gap: 10px;
        }
        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: rgba(255, 255, 255, .7);
            transition: background .2s, color .2s, transform .2s;
        }
        .social-icon:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, .75);
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            padding-top: 24px;
            font-size: 13px;
            color: rgba(255, 255, 255, .45);
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .site-nav {
                display: none;
            }
            .header-actions .search-box {
                display: none;
            }
            .mobile-toggle {
                display: inline-flex;
            }
            .page-hero {
                padding: 56px 0 80px;
            }
            .page-hero h1 {
                font-size: 32px;
            }
            .page-hero-sub {
                font-size: 16px;
            }
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cta-box {
                flex-direction: column;
                align-items: flex-start;
                padding: 44px 36px;
            }
        }
        @media (max-width: 767.98px) {
            .header-row {
                height: 56px;
            }
            .brand-text {
                font-size: 18px;
            }
            .page-hero {
                padding: 44px 0 64px;
            }
            .page-hero h1 {
                font-size: 26px;
            }
            .page-hero-sub {
                font-size: 15px;
            }
            .hero-stats {
                gap: 12px;
            }
            .stat-item {
                padding: 10px 16px;
                min-width: 90px;
            }
            .stat-num {
                font-size: 22px;
            }
            .section-head {
                margin-bottom: 28px;
            }
            .section-head h2 {
                font-size: 22px;
            }
            .section-head-with-link {
                margin-bottom: 20px;
            }
            .section-head-with-link h2 {
                font-size: 22px;
            }
            .game-card {
                flex-direction: column;
            }
            .game-card-cover {
                flex: none;
                height: 160px;
            }
            .steps-grid {
                grid-template-columns: 1fr;
            }
            .cta-box {
                padding: 36px 24px;
            }
            .cta-content h2 {
                font-size: 22px;
            }
            .footer-top {
                flex-direction: column;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 575.98px) {
            .page-hero-actions .btn {
                width: 100%;
            }
            .hero-stats {
                width: 100%;
                flex-wrap: wrap;
            }
            .stat-item {
                flex: 1;
                min-width: 80px;
            }
            .game-card-meta {
                flex-wrap: wrap;
                gap: 8px;
            }
        }
