/* roulang page: index */
:root{
  --brand:#65CB62;
  --brand-bright:#B6FF3E;
  --bg-dark:#0D1A12;
  --bg-deep:#0A120D;
  --bg-card:#14261B;
  --bg-hover:#1E3526;
  --text-title:#C9D6CE;
  --text-body:#9FB3A8;
  --text-muted:#6B8B77;
  --border-subtle:rgba(255,255,255,0.08);
  --radius-lg:1rem;
  --radius-md:0.75rem;
  --radius-pill:9999px;
  --shadow-card:0 8px 30px rgba(0,0,0,0.35);
  --shadow-hover:0 16px 40px rgba(101,203,98,0.16);
  --gradient-brand:linear-gradient(135deg,#65CB62,#B6FF3E);
  --gradient-bg:linear-gradient(135deg,#0D1A12 0%,#1E3526 50%,#65CB62 130%);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg-dark);
  color:var(--text-body);
  font-family:'PingFang SC','Hiragino Sans GB','Microsoft YaHei',Inter,Arial,sans-serif;
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font-family:inherit;cursor:pointer}
input,button{border:none;outline:none}
h1,h2,h3,h4,h5{color:var(--text-title);line-height:1.25}
.container{max-width:1280px;margin:0 auto;padding:0 1.5rem;width:100%}
.section{padding:5rem 0}
@media(max-width:768px){.section{padding:3rem 0}}
.section-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem;gap:1rem}
.section-head h2{font-size:clamp(1.75rem,2.5vw,2.25rem);font-weight:700;letter-spacing:-0.02em}
.section-more{color:var(--brand);font-size:0.875rem;display:inline-flex;align-items:center;gap:0.375rem;transition:color .3s}
.section-more:hover{color:var(--brand-bright)}
/* NAV */
.site-header{
  position:sticky;top:0;z-index:1000;
  background:linear-gradient(180deg,rgba(13,26,18,0.96),rgba(13,26,18,0.88));
  -webkit-backdrop-filter:blur(16px);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border-subtle);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:72px;gap:2rem}
.logo{display:flex;align-items:center;gap:0.75rem;font-size:1.375rem;font-weight:800;color:#fff;letter-spacing:-0.02em}
.logo-orb{
  width:38px;height:38px;border-radius:50%;
  background:radial-gradient(circle at 32% 30%,#B6FF3E,#65CB62 60%,#2f7a3d);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 0 20px rgba(101,203,98,0.45);
  color:#0D1A12;font-size:1.125rem;
}
.nav-menu{display:flex;align-items:center;gap:0.25rem;list-style:none}
.nav-menu a.nav-link{
  display:inline-block;padding:0.5rem 1rem;border-radius:9999px;
  font-size:0.9375rem;color:var(--text-body);font-weight:500;
  transition:color .3s,background .3s;
}
.nav-menu a.nav-link:hover{color:var(--brand-bright);background:rgba(101,203,98,0.08)}
.nav-menu a.nav-link.active{color:#0D1A12;background:var(--gradient-brand);font-weight:600}
.nav-right{display:flex;align-items:center;gap:0.75rem}
.search-toggle{
  width:40px;height:40px;border-radius:50%;
  background:rgba(255,255,255,0.06);color:var(--text-body);
  display:flex;align-items:center;justify-content:center;font-size:0.9375rem;
  transition:background .3s,color .3s;
}
.search-toggle:hover{background:rgba(101,203,98,0.15);color:var(--brand-bright)}
.btn-primary{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:var(--gradient-brand);color:#0D1A12;font-weight:700;
  padding:0.625rem 1.5rem;border-radius:9999px;font-size:0.9375rem;
  box-shadow:0 4px 18px rgba(101,203,98,0.35);
  transition:transform .3s,box-shadow .3s,filter .3s;
}
.btn-primary:hover{filter:brightness(1.08);transform:translateY(-2px);box-shadow:0 8px 28px rgba(101,203,98,0.5)}
.btn-ghost{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:transparent;color:#fff;border:1px solid rgba(255,255,255,0.2);
  padding:0.625rem 1.5rem;border-radius:9999px;font-size:0.9375rem;font-weight:500;
  transition:background .3s,border-color .3s,color .3s;
}
.btn-ghost:hover{border-color:var(--brand);color:var(--brand-bright);background:rgba(101,203,98,0.06)}
.search-box{position:absolute;top:72px;right:1.5rem;width:300px;max-width:calc(100vw - 3rem);opacity:0;visibility:hidden;transform:translateY(-10px);transition:all .3s}
.search-box.open{opacity:1;visibility:visible;transform:translateY(0)}
.search-box input{
  width:100%;background:var(--bg-card);border:1px solid var(--border-subtle);
  border-radius:9999px;padding:0.75rem 1.25rem;color:#fff;font-size:0.9375rem;
}
.search-box input:focus{border-color:var(--brand);box-shadow:0 0 0 3px rgba(101,203,98,0.2)}
/* mobile nav */
.nav-toggle{display:none;flex-direction:column;gap:5px;background:transparent;width:42px;height:42px;align-items:center;justify-content:center}
.nav-toggle span{display:block;width:22px;height:2px;background:#fff;border-radius:2px;transition:all .3s}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-drawer{
  position:fixed;top:0;right:0;width:300px;max-width:85vw;height:100vh;
  background:var(--bg-deep);z-index:1001;padding:2rem;
  transform:translateX(100%);transition:transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow:-20px 0 50px rgba(0,0,0,0.5);
}
.mobile-drawer.open{transform:translateX(0)}
.mobile-drawer .drawer-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem}
.mobile-drawer .drawer-close{background:transparent;color:#fff;font-size:1.25rem}
.mobile-drawer ul{list-style:none}
.mobile-drawer li a{display:block;padding:0.875rem 1rem;border-radius:0.75rem;color:var(--text-body);font-size:1rem;margin-bottom:0.375rem;transition:background .3s,color .3s}
.mobile-drawer li a:hover{background:rgba(101,203,98,0.1);color:var(--brand-bright)}
.mobile-drawer li a.active{background:var(--gradient-brand);color:#0D1A12;font-weight:700}
.drawer-backdrop{position:fixed;inset:0;background:rgba(0,0,0,0.6);z-index:1000;opacity:0;visibility:hidden;transition:opacity .3s}
.drawer-backdrop.open{opacity:1;visibility:visible}
/* HERO */
.hero{position:relative;min-height:92vh;display:flex;align-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:url('/assets/images/backpic/back-1.webp') center 30% / cover no-repeat}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(13,26,18,0.4),rgba(13,26,18,0.85) 75%,#0D1A12)}
.hero-content{position:relative;z-index:2;padding-top:4rem;padding-bottom:4rem}
.hero-tagline{
  display:inline-flex;align-items:center;gap:0.5rem;
  color:var(--brand-bright);font-size:0.875rem;font-weight:600;letter-spacing:0.12em;
  background:rgba(13,26,18,0.55);border:1px solid rgba(101,203,98,0.3);
  padding:0.375rem 1rem;border-radius:9999px;margin-bottom:1.5rem;
}
.hero h1{
  font-size:clamp(3rem,5vw,4.5rem);
  font-weight:800;line-height:1.08;letter-spacing:-0.03em;
  color:#fff;max-width:820px;margin-bottom:1.25rem;
  text-shadow:0 10px 40px rgba(0,0,0,0.5);
}
.hero-sub{font-size:clamp(1.0625rem,1.6vw,1.25rem);max-width:640px;color:var(--text-body);margin-bottom:2rem;line-height:1.7}
.hero-actions{display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:3rem}
.btn-primary.lg,.btn-ghost.lg{padding:0.875rem 2.25rem;font-size:1rem}
.hero-stats{display:grid;grid-template-columns:repeat(4,auto);gap:1rem;justify-content:start;flex-wrap:wrap}
.stat-card{
  display:flex;flex-direction:column;gap:0.25rem;
  background:rgba(13,26,18,0.7);border:1px solid rgba(101,203,98,0.35);
  border-radius:0.75rem;padding:1rem 1.5rem;min-width:140px;
  transition:border-color .3s,box-shadow .3s;
}
.stat-card:hover{border-color:var(--brand);box-shadow:var(--shadow-hover)}
.stat-num{font-size:1.5rem;font-weight:800;color:var(--brand-bright);line-height:1.2}
.stat-label{font-size:0.8125rem;color:var(--text-muted)}
/* SHELF */
.shelf{display:flex;gap:1.25rem;overflow-x:auto;scroll-behavior:smooth;padding-bottom:0.5rem;scrollbar-width:none}
.shelf::-webkit-scrollbar{display:none}
.shelf-card{
  flex:0 0 280px;border-radius:var(--radius-lg);overflow:hidden;position:relative;
  background:var(--bg-card);box-shadow:var(--shadow-card);
  transition:transform .3s,box-shadow .3s;
  border:1px solid var(--border-subtle);
}
.shelf-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover);border-color:rgba(101,203,98,0.4)}
.shelf-card .thumb{position:relative;overflow:hidden;aspect-ratio:16/9}
.shelf-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.shelf-card:hover .thumb img{transform:scale(1.06)}
.shelf-card .thumb::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(13,26,18,0.9))}
.shelf-card-info{position:absolute;left:0;right:0;bottom:0;padding:1rem;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:0.5rem}
.shelf-card-info h3{font-size:1rem;font-weight:600;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.arrow-btn{
  width:40px;height:40px;border-radius:50%;background:transparent;
  border:1px solid rgba(255,255,255,0.2);color:#fff;font-size:1.25rem;line-height:1;
  display:flex;align-items:center;justify-content:center;transition:all .3s;
}
.arrow-btn:hover{background:var(--brand);border-color:var(--brand);color:#0D1A12}
.arrow-btn:disabled{opacity:.4;cursor:not-allowed}
/* hot grid */
.hot-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.hot-card{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  background:var(--bg-card);box-shadow:var(--shadow-card);
  border:1px solid var(--border-subtle);transition:all .3s;
}
.hot-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:rgba(101,203,98,0.4)}
.hot-card .thumb{position:relative;overflow:hidden}
.hot-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.hot-card:hover .thumb img{transform:scale(1.05)}
.hot-card .card-body{padding:1rem;position:relative;z-index:2}
.hot-card.large{grid-column:span 2;grid-row:span 2}
.hot-card.large .thumb{aspect-ratio:16/10}
.hot-card.large .card-body h3{font-size:1.375rem}
.hot-card.regular .thumb{aspect-ratio:16/10}
.hot-card .card-body h3{font-size:1.0625rem;font-weight:600;color:#fff;margin-bottom:0.375rem}
.hot-card .card-body p{font-size:0.875rem;color:var(--text-muted);margin-bottom:0.75rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.hot-meta{display:flex;align-items:center;gap:0.75rem;font-size:0.8125rem;color:var(--text-muted)}
.hot-tag{display:inline-flex;align-items:center;gap:0.375rem;font-size:0.75rem;font-weight:600}
.hot-tag.live{color:#FF4D4F}
.hot-tag.live::before{content:"";width:6px;height:6px;border-radius:50%;background:#FF4D4F;animation:pulse 1.2s infinite}
.hot-tag.heat{color:var(--brand-bright)}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.badge-live{
  position:absolute;top:0.875rem;left:0.875rem;z-index:3;
  background:rgba(13,26,18,0.75);border:1px solid rgba(255,77,79,0.5);
  color:#FF4D4F;font-size:0.75rem;font-weight:700;letter-spacing:0.06em;
  padding:0.25rem 0.75rem;border-radius:9999px;display:inline-flex;align-items:center;gap:0.375rem;
}
.badge-live::before{content:"";width:6px;height:6px;border-radius:50%;background:#FF4D4F}
/* feature rows */
.feature-row{margin-bottom:3rem}
.feature-row:last-child{margin-bottom:0}
.feature-head{display:flex;align-items:center;gap:0.875rem;margin-bottom:1.25rem}
.feature-icon{width:36px;height:36px;border-radius:50%;background:rgba(101,203,98,0.15);display:flex;align-items:center;justify-content:center;color:var(--brand);font-size:0.9375rem}
.feature-head h3{font-size:1.375rem;font-weight:700}
.shelf-card.feature-card{border-top:2px solid transparent}
.shelf-card.feature-card.football:hover{border-color:#65CB62}
.shelf-card.feature-card.basketball:hover{border-color:#FF8C42}
.shelf-card.feature-card.tennis:hover{border-color:#FFD700}
/* CTA */
.cta-section{
  position:relative;border-radius:2rem;overflow:hidden;
  background:var(--bg-card);border:1px solid var(--border-subtle);
  padding:3.5rem 3rem;
}
.cta-glow{position:absolute;inset:0;pointer-events:none;background:radial-gradient(600px 200px at 10% 20%,rgba(101,203,98,0.22),transparent),radial-gradient(500px 180px at 90% 80%,rgba(182,255,62,0.12),transparent)}
.cta-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.cta-inner h2{font-size:clamp(1.75rem,3vw,2.5rem);font-weight:800;color:#fff;margin-bottom:1rem}
.cta-inner p.cta-desc{color:var(--text-body);margin-bottom:1.5rem;max-width:460px}
.cta-form{display:flex;gap:0.75rem;flex-wrap:wrap}
.cta-form input[type="email"]{
  flex:1;min-width:220px;background:#0D1A12;border:1px solid rgba(255,255,255,0.12);
  border-radius:9999px;padding:0.875rem 1.5rem;color:#fff;font-size:0.9375rem;
  transition:border-color .3s,box-shadow .3s;
}
.cta-form input[type="email"]:focus{border-color:var(--brand-bright);box-shadow:0 0 0 3px rgba(182,255,62,0.18)}
.cta-form .btn-primary{padding:0.875rem 1.75rem}
.cta-note{font-size:0.8125rem;color:var(--text-muted);margin-top:1rem;display:flex;align-items:center;gap:0.375rem}
/* news */
.news-list{display:grid;grid-template-columns:1fr;gap:1.25rem}
.news-card{
  display:flex;flex-direction:column;gap:0.625rem;
  background:var(--bg-card);border:1px solid var(--border-subtle);
  border-radius:var(--radius-lg);padding:1.5rem 1.75rem;
  transition:transform .3s,box-shadow .3s,border-color .3s;
}
.news-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover);border-color:rgba(101,203,98,0.4)}
.news-meta{display:flex;align-items:center;gap:0.75rem;font-size:0.8125rem;color:var(--text-muted)}
.news-card h3{font-size:1.125rem;font-weight:600;color:#fff;transition:color .3s}
.news-card:hover h3{color:var(--brand-bright)}
.news-card p{font-size:0.9375rem;color:var(--text-body);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin:0}
.news-card .tag{
  display:inline-block;background:rgba(101,203,98,0.12);color:var(--brand);
  font-size:0.75rem;font-weight:600;padding:0.1875rem 0.75rem;border-radius:9999px;
}
.news-empty{
  background:var(--bg-card);border:1px dashed rgba(101,203,98,0.3);
  border-radius:var(--radius-lg);padding:3rem;text-align:center;color:var(--text-muted);
  font-size:1rem;
}
/* FAQ */
.faq-wrap{max-width:820px;margin:0 auto;display:grid;gap:1rem}
.faq-item{
  background:var(--bg-card);border:1px solid var(--border-subtle);
  border-radius:0.75rem;overflow:hidden;transition:border-color .3s;
}
.faq-item.open{border-color:rgba(101,203,98,0.45)}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;
  background:transparent;padding:1.25rem 1.5rem;color:#fff;font-size:1rem;font-weight:600;text-align:left;
}
.faq-q .faq-icon{color:var(--brand);transition:transform .3s;flex-shrink:0}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;color:var(--text-body);font-size:0.9375rem;line-height:1.75}
.faq-item.open .faq-a{max-height:240px}
.faq-a p{padding:0 1.5rem 1.5rem}
/* FOOTER */
.site-footer{background:var(--bg-deep);border-top:1px solid rgba(101,203,98,0.25);margin-top:2rem}
.footer-main{padding:4rem 0 2.5rem;display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:2.5rem}
.footer-brand p{font-size:0.9375rem;color:var(--text-muted);margin-top:1rem;max-width:320px}
.footer-social{display:flex;gap:0.75rem;margin-top:1.25rem}
.footer-social a{
  width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.06);
  display:flex;align-items:center;justify-content:center;color:var(--text-body);transition:all .3s;
}
.footer-social a:hover{background:var(--brand);color:#0D1A12;transform:translateY(-2px)}
.footer-col h4{font-size:0.9375rem;color:#fff;font-weight:600;margin-bottom:1.25rem}
.footer-col ul{list-style:none;display:grid;gap:0.625rem}
.footer-col ul a{font-size:0.875rem;color:var(--text-muted);transition:color .3s}
.footer-col ul a:hover{color:var(--brand-bright)}
.footer-bottom{
  border-top:1px solid var(--border-subtle);
  padding:1.5rem 0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;
  font-size:0.8125rem;color:var(--text-muted);
}
.footer-bottom a{color:var(--text-muted);transition:color .3s}
.footer-bottom a:hover{color:var(--brand)}
/* responsive */
@media(max-width:1024px){
  .hot-grid{grid-template-columns:repeat(2,1fr)}
  .cta-inner{grid-template-columns:1fr}
  .footer-main{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-menu{display:none}
  .nav-toggle{display:flex}
  .nav-right .btn-primary{display:none}
  .hero{min-height:auto;padding:3rem 0}
  .hero-stats{grid-template-columns:repeat(2,1fr);width:100%}
  .stat-card{min-width:0}
  .hot-grid{grid-template-columns:1fr}
  .hot-card.large{grid-column:auto;grid-row:auto}
  .footer-main{grid-template-columns:1fr}
  .cta-section{padding:2rem 1.25rem}
  .section-head h2{font-size:1.5rem}
  .shelf-card{flex-basis:240px}
}
@media(max-width:520px){
  .hero h1{font-size:clamp(2.4rem,9vw,3rem)}
  .hero-actions .btn-primary.lg,.hero-actions .btn-ghost.lg{width:100%;justify-content:center}
  .stat-card{padding:0.75rem 1rem}
  .cta-form .btn-primary{width:100%;justify-content:center}
  .search-box{right:0.5rem}
}

/* roulang page: category1 */
:root {
  --kiwi: #65CB62;
  --kiwi-bright: #B6FF3E;
  --bg: #0D1A12;
  --bg-2: #14261B;
  --bg-hover: #1E3526;
  --title: #C9D6CE;
  --text: #9FB3A8;
  --muted: #6B8B77;
  --border: rgba(255, 255, 255, 0.08);
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 16px 40px rgba(101, 203, 98, 0.16);
  --font-cn: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-cn);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
  outline: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(13, 26, 18, 0.94), rgba(13, 26, 18, 0.78));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--title);
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.88;
}

.logo-orb {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--kiwi), var(--kiwi-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D1A12;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(101, 203, 98, 0.35);
  flex-shrink: 0;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-link:hover {
  color: var(--title);
  background: rgba(101, 203, 98, 0.1);
}

.nav-link.active {
  color: var(--kiwi-bright);
  background: rgba(101, 203, 98, 0.15);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.search-toggle:hover {
  color: var(--kiwi-bright);
  border-color: rgba(101, 203, 98, 0.5);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--kiwi), var(--kiwi-bright));
  color: #0D1A12;
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 6px 22px rgba(101, 203, 98, 0.25);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 30px rgba(101, 203, 98, 0.4);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(101, 203, 98, 0.4);
  color: var(--title);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(101, 203, 98, 0.12);
  border-color: var(--kiwi);
  color: var(--kiwi-bright);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--title);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.search-box {
  display: none;
  padding: 0 24px 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.search-box.open {
  display: block;
}

.search-box input {
  width: 100%;
  height: 46px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--title);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.search-box input:focus {
  border-color: var(--kiwi);
  box-shadow: 0 0 0 4px rgba(101, 203, 98, 0.15);
}

.search-box input::placeholder {
  color: var(--muted);
}

/* ===== Page Hero ===== */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 26, 18, 0.55) 0%, rgba(13, 26, 18, 0.82) 60%, var(--bg) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 50px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb a:hover {
  color: var(--kiwi);
}

.breadcrumb i {
  font-size: 0.65rem;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--title);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero .hero-desc {
  max-width: 620px;
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Stats Strip ===== */
.stats-strip {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px 0;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(13, 26, 18, 0.6);
  border: 1px solid rgba(101, 203, 98, 0.16);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(101, 203, 98, 0.4);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--kiwi), var(--kiwi-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D1A12;
  font-size: 1.1rem;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--kiwi-bright);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ===== Section ===== */
.section {
  padding: 72px 0;
}

.section-head {
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(101, 203, 98, 0.12);
  border: 1px solid rgba(101, 203, 98, 0.3);
  color: var(--kiwi);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-head h2,
.section-title {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--title);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-head p {
  max-width: 680px;
  color: var(--muted);
}

/* ===== Feature Cards ===== */
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(101, 203, 98, 0.35);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(101, 203, 98, 0.2), rgba(182, 255, 62, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kiwi-bright);
  font-size: 1.25rem;
  margin-bottom: 20px;
  border: 1px solid rgba(101, 203, 98, 0.2);
}

.feature-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
}

/* ===== Shelf ===== */
.shelf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.shelf-head h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--title);
}

.shelf-arrows {
  display: flex;
  gap: 10px;
}

.shelf-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(101, 203, 98, 0.4);
  background: transparent;
  color: var(--title);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.shelf-arrow:hover {
  background: var(--kiwi);
  border-color: var(--kiwi);
  color: #0D1A12;
}

.shelf-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 2px 20px;
}

.shelf-track::-webkit-scrollbar {
  display: none;
}

.shelf-card {
  min-width: 264px;
  max-width: 264px;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.shelf-card:hover {
  border-color: rgba(101, 203, 98, 0.45);
  box-shadow: var(--shadow-hover);
}

.shelf-cover {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.shelf-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shelf-card:hover .shelf-cover img {
  transform: scale(1.05);
}

.shelf-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 26, 18, 0.85) 100%);
}

.shelf-cover .live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(13, 26, 18, 0.78);
  border: 1px solid rgba(255, 77, 79, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF4D4F;
  box-shadow: 0 0 8px rgba(255, 77, 79, 0.8);
}

.shelf-card-body {
  padding: 16px;
}

.shelf-card-body h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shelf-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--muted);
}

.heat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(101, 203, 98, 0.1);
  border: 1px solid rgba(101, 203, 98, 0.3);
  color: var(--kiwi-bright);
  font-size: 0.75rem;
  font-weight: 600;
}

.heat-badge i {
  color: #FF8C42;
  font-size: 0.7rem;
}

/* ===== Rec Cards ===== */
.rec-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rec-card:hover {
  border-color: rgba(101, 203, 98, 0.4);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.rec-cover {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.rec-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rec-card:hover .rec-cover img {
  transform: scale(1.05);
}

.rec-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 26, 18, 0.8) 100%);
}

.rec-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(13, 26, 18, 0.75);
  border: 1px solid rgba(255, 140, 66, 0.5);
  color: #FF8C42;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rec-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rec-body h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 6px;
  line-height: 1.4;
}

.rec-body p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 14px;
  flex: 1;
}

.rec-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===== Steps ===== */
.steps-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-item {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
}

.step-item:hover {
  background: rgba(101, 203, 98, 0.06);
}

.step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--kiwi), var(--kiwi-bright));
  color: #0D1A12;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(101, 203, 98, 0.3);
}

.step-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(101, 203, 98, 0.35);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: var(--title);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-q:hover {
  color: var(--kiwi);
}

.faq-q .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(101, 203, 98, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kiwi);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--kiwi);
  color: #0D1A12;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ===== CTA ===== */
.cta-card {
  position: relative;
  border-radius: 2rem;
  background: var(--bg-2);
  border: 1px solid rgba(101, 203, 98, 0.25);
  padding: 56px 48px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(101, 203, 98, 0.18);
  filter: blur(80px);
  pointer-events: none;
}

.cta-card::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 30%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(182, 255, 62, 0.1);
  filter: blur(90px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 260px;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--title);
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--muted);
  max-width: 460px;
}

.cta-form {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 280px;
}

.cta-form .form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.cta-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  height: 50px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 22px;
  color: var(--title);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.cta-form input[type="email"]:focus {
  border-color: var(--kiwi-bright);
  box-shadow: 0 0 0 4px rgba(182, 255, 62, 0.12);
}

.cta-form input[type="email"]::placeholder {
  color: var(--muted);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-note i {
  color: var(--kiwi);
}

/* ===== Footer ===== */
.site-footer {
  background: #0A120D;
  border-top: 1px solid rgba(101, 203, 98, 0.25);
  padding: 60px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(101, 203, 98, 0.15);
  border-color: rgba(101, 203, 98, 0.5);
  color: var(--kiwi-bright);
}

.footer-col h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--kiwi);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--kiwi);
}

/* ===== Mobile Nav Drawer ===== */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg-2);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 200;
    padding: 24px;
  }

  nav.open {
    transform: translateX(0);
  }

  .nav-menu {
    flex-direction: column;
    gap: 8px;
  }

  .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .btn-primary {
    padding: 10px 14px;
    font-size: 0.875rem;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 48px 0;
  }

  .page-hero {
    min-height: 320px;
  }

  .page-hero h1 {
    font-size: clamp(1.875rem, 6vw, 2.5rem);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 36px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .shelf-card {
    min-width: 220px;
    max-width: 220px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
  }

  .form-row {
    flex-direction: column;
  }

  .cta-form input[type="email"] {
    width: 100%;
  }

  .faq-q {
    padding: 16px 18px;
    font-size: 0.9375rem;
  }

  .faq-a-inner {
    padding: 0 18px 16px;
  }
}

/* roulang page: article */
:root {
  --kiwi: #65CB62;
  --kiwi-dark: #0D1A12;
  --kiwi-forest: #14261B;
  --kiwi-hover: #1E3526;
  --kiwi-lime: #B6FF3E;
  --text-title: #C9D6CE;
  --text-body: #9FB3A8;
  --text-muted: #6B8B77;
  --border-soft: rgba(255,255,255,0.08);
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --shadow-card: 0 8px 30px rgba(0,0,0,0.35);
  --shadow-hover: 0 16px 40px rgba(101,203,98,0.16);
  --gradient-brand: linear-gradient(135deg, #0D1A12 0%, #1E3526 50%, #65CB62 130%);
  --gradient-cta: linear-gradient(135deg, #65CB62, #B6FF3E);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Inter, Arial, sans-serif;
  background: var(--kiwi-dark);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
input, button { outline: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient-cta);
  color: #0D1A12;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.7rem 1.65rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(101,203,98,0.3);
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(101,203,98,0.4);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--text-title);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.7rem 1.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(101,203,98,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: rgba(101,203,98,0.1);
  border-color: var(--kiwi);
  color: var(--kiwi);
  transform: translateY(-2px);
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(13,26,18,0.92), rgba(13,26,18,0.82));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-title);
  letter-spacing: 0.02em;
}
.logo-orb {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #B6FF3E, #65CB62 65%, #2E7D32);
  display: flex; align-items: center; justify-content: center;
  color: #0D1A12;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(101,203,98,0.4);
}
.nav-menu {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-link {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: var(--kiwi);
  background: rgba(101,203,98,0.08);
}
.nav-link.active {
  color: #0D1A12;
  background: var(--gradient-cta);
  font-weight: 700;
}
.nav-right {
  display: flex; align-items: center; gap: 0.75rem;
}
.search-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-body);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.search-toggle:hover {
  color: var(--kiwi);
  border-color: var(--kiwi);
  background: rgba(101,203,98,0.1);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 8px 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-title);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.search-box {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem 1rem;
}
.search-box.open { display: block; }
.search-box input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--kiwi-forest);
  border: 1px solid var(--border-soft);
  border-radius: 0.75rem;
  color: var(--text-title);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}
.search-box input:focus {
  border-color: var(--kiwi);
  box-shadow: 0 0 0 3px rgba(101,203,98,0.15);
}
.search-box input::placeholder { color: var(--text-muted); }

/* ===== Reading Progress ===== */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--kiwi), var(--kiwi-lime));
  z-index: 9999;
  transition: width 0.08s linear;
}

/* ===== Article Head ===== */
.article-head {
  position: relative;
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.article-head-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.article-head-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,26,18,0.55), rgba(13,26,18,0.9) 80%, #0D1A12);
  z-index: -1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--kiwi); }
.breadcrumb i { font-size: 0.625rem; }
.breadcrumb .current { color: var(--text-body); }
.article-category-tag {
  display: inline-block;
  background: rgba(101,203,98,0.15);
  border: 1px solid rgba(101,203,98,0.3);
  color: var(--kiwi);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.article-head h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-title);
  line-height: 1.3;
  max-width: 820px;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.article-meta i { color: var(--kiwi); font-size: 0.875rem; }
.article-meta .meta-tag {
  background: rgba(101,203,98,0.12);
  border: 1px solid rgba(101,203,98,0.25);
  color: var(--kiwi);
  padding: 0.2rem 0.8rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.75rem;
}

/* ===== Article Body ===== */
.article-body-section {
  padding: 3.5rem 0 4.5rem;
}
.article-body-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.article-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-body);
}
.article-content p {
  margin-bottom: 1.5rem;
  color: #A8BDB2;
}
.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-title);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.article-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-title);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-content blockquote {
  border-left: 4px solid var(--kiwi);
  padding: 1.1rem 1.5rem;
  background: rgba(101,203,98,0.05);
  border-radius: 0 0.75rem 0.75rem 0;
  margin: 1.75rem 0;
  color: var(--text-body);
  font-style: normal;
}
.article-content img {
  border-radius: 0.75rem;
  max-width: 100%;
  height: auto;
  margin: 1.75rem 0;
  box-shadow: var(--shadow-card);
}
.article-content a {
  color: var(--kiwi);
  text-decoration: underline;
  text-decoration-color: rgba(101,203,98,0.3);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.3s;
}
.article-content a:hover { text-decoration-color: var(--kiwi); }
.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.article-content li {
  margin-bottom: 0.5rem;
  color: #A8BDB2;
}
.article-content ul li::marker { color: var(--kiwi); }
.article-content ol li::marker { color: var(--kiwi); font-weight: 700; }
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  font-size: 0.9375rem;
}
.article-content th,
.article-content td {
  border: 1px solid var(--border-soft);
  padding: 0.75rem 1rem;
  text-align: left;
}
.article-content th {
  background: var(--kiwi-forest);
  color: var(--text-title);
  font-weight: 600;
}
.article-content td { color: var(--text-body); }
.article-empty {
  text-align: center;
  padding: 4rem 1.5rem;
}
.article-empty i {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.article-empty h2 {
  font-size: 1.5rem;
  color: var(--text-title);
  margin-bottom: 0.75rem;
}
.article-empty p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* ===== Related Section ===== */
.related-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #0D1A12 0%, #0F1E14 100%);
  border-top: 1px solid var(--border-soft);
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-title);
}
.section-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-body);
  transition: all 0.3s ease;
}
.section-more:hover { color: var(--kiwi); gap: 0.75rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.related-card {
  background: var(--kiwi-forest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(101,203,98,0.35);
}
.related-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.related-card:hover .related-card-img img {
  transform: scale(1.05);
}
.related-card-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(13,26,18,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(101,203,98,0.4);
  color: var(--kiwi);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
}
.related-card-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.related-card-info h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-title);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-card-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.related-card-meta i { color: var(--kiwi); }
.related-more {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 4.5rem 0;
  background: var(--kiwi-dark);
}
.cta-card {
  position: relative;
  background: var(--gradient-brand);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  overflow: hidden;
  border: 1px solid rgba(101,203,98,0.15);
}
.cta-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(101,203,98,0.25), transparent 70%);
  top: -100px;
  right: -50px;
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(182,255,62,0.12), transparent 70%);
  bottom: -80px;
  left: 20%;
  pointer-events: none;
}
.cta-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.cta-card p {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 520px;
  position: relative;
  z-index: 1;
}
.subscribe-form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.subscribe-form input {
  flex: 1;
  min-width: 220px;
  background: rgba(13,26,18,0.8);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9999px;
  padding: 0.85rem 1.4rem;
  color: var(--text-title);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}
.subscribe-form input:focus {
  border-color: var(--kiwi-lime);
  box-shadow: 0 0 0 3px rgba(182,255,62,0.15);
}
.subscribe-form input::placeholder { color: var(--text-muted); }
.subscribe-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.subscribe-hint i { color: var(--kiwi); }

/* ===== FAQ Section ===== */
.faq-section {
  padding: 4.5rem 0;
  background: #0F1E14;
  border-top: 1px solid var(--border-soft);
}
.faq-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-title);
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: var(--kiwi-forest);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(101,203,98,0.25); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-title);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: left;
  gap: 1rem;
}
.faq-question:hover { background: rgba(101,203,98,0.06); }
.faq-question i {
  color: var(--kiwi);
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* ===== Footer ===== */
.site-footer {
  background: #0A120D;
  border-top: 1px solid rgba(101,203,98,0.2);
  padding-top: 4rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 1rem 0 1.25rem;
  max-width: 340px;
}
.footer-social {
  display: flex;
  gap: 0.65rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  color: var(--kiwi);
  border-color: var(--kiwi);
  background: rgba(101,203,98,0.1);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-col li a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--kiwi);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.footer-col li a:hover {
  color: var(--kiwi);
  transform: translateX(3px);
}
.footer-col li a:hover::before { opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--kiwi); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-menu { gap: 0.15rem; }
  .nav-link { padding: 0.5rem 0.85rem; font-size: 0.875rem; }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    right: -100%;
    top: 72px;
    bottom: 0;
    width: 280px;
    background: rgba(13,26,18,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 2rem 1.5rem;
    transition: right 0.35s ease;
    border-left: 1px solid var(--border-soft);
    z-index: 99;
  }
  .nav-menu.open { right: 0; }
  .nav-menu li { width: 100%; }
  .nav-link {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
  .nav-right .btn-primary span {
    display: none;
  }
  .nav-right .btn-primary {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }
  .article-head { padding: 2.5rem 0 2rem; }
  .article-head h1 { font-size: clamp(1.4rem, 4vw, 2rem); }
  .article-meta { gap: 0.75rem 1rem; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 2.5rem 1.5rem; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .container { padding: 0 1.25rem; }
}
@media (max-width: 520px) {
  .related-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .article-meta span { font-size: 0.75rem; }
  .breadcrumb { font-size: 0.75rem; }
  .cta-card h2 { font-size: 1.5rem; }
}

/* roulang page: category2 */
:root {
    --brand: #65CB62;
    --brand-accent: #B6FF3E;
    --bg: #0D1A12;
    --bg-alt: #14261B;
    --bg-hover: #1E3526;
    --text: #C9D6CE;
    --text-body: #9FB3A8;
    --text-muted: #6B8B77;
    --border: rgba(255,255,255,0.08);
    --radius-lg: 1rem;
    --radius-md: 0.75rem;
    --shadow-card: 0 8px 30px rgba(0,0,0,0.35);
    --shadow-hover: 0 16px 40px rgba(101,203,98,0.16);
    --transition: 300ms ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'PingFang SC','Hiragino Sans GB','Microsoft YaHei',system-ui,sans-serif; background: var(--bg); color: var(--text-body); line-height: 1.7; font-size: 1rem; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: linear-gradient(180deg, rgba(13,26,18,0.96), rgba(13,26,18,0.74)); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--text); position: relative; z-index: 120; white-space: nowrap; }
.logo-orb { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-accent)); color: var(--bg); font-size: 1rem; box-shadow: 0 0 14px rgba(101,203,98,0.5); flex-shrink: 0; }
.nav-menu { display: flex; align-items: center; list-style: none; gap: 4px; }
.nav-link { display: block; padding: 8px 14px; border-radius: 9999px; font-size: .925rem; color: var(--text-body); transition: all var(--transition); font-weight: 500; }
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--brand-accent); background: rgba(101,203,98,0.14); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.search-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); background: transparent; color: var(--text-body); font-size: .9rem; transition: all var(--transition); }
.search-toggle:hover { border-color: var(--brand); color: var(--brand); }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 9999px; background: linear-gradient(135deg, var(--brand), var(--brand-accent)); color: #0A120D; font-weight: 700; font-size: .9rem; transition: all var(--transition); box-shadow: 0 6px 20px rgba(101,203,98,0.28); border: none; white-space: nowrap; }
.btn-primary:hover { filter: brightness(1.1); box-shadow: 0 8px 28px rgba(182,255,62,0.35); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 9999px; border: 1px solid rgba(101,203,98,0.45); color: var(--brand); font-weight: 600; font-size: .9rem; background: rgba(13,26,18,0.6); transition: all var(--transition); white-space: nowrap; }
.btn-ghost:hover { background: rgba(101,203,98,0.1); border-color: var(--brand-accent); color: var(--brand-accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; }
.nav-toggle span { width: 18px; height: 2px; background: var(--text-body); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.search-box { display: none; padding: 14px 24px 18px; border-top: 1px solid var(--border); background: rgba(13,26,18,0.97); }
.search-box.open { display: block; }
.search-box input { width: 100%; max-width: 640px; margin: 0 auto; display: block; padding: 12px 20px; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.12); background: var(--bg); color: var(--text); font-size: .95rem; outline: none; transition: border-color var(--transition); }
.search-box input:focus { border-color: var(--brand-accent); box-shadow: 0 0 0 3px rgba(182,255,62,0.15); }

/* ===== Category Hero ===== */
.category-hero { position: relative; min-height: 400px; display: flex; align-items: center; background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat; }
.category-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,26,18,0.5) 0%, rgba(13,26,18,0.82) 70%, #0D1A12 100%); }
.category-hero .container { position: relative; z-index: 2; }
.category-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 9999px; background: rgba(101,203,98,0.14); border: 1px solid rgba(101,203,98,0.35); color: var(--brand-accent); font-size: .82rem; font-weight: 600; margin-bottom: 18px; }
.category-hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800; color: var(--text); line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.02em; }
.category-hero p { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--text-body); max-width: 580px; margin-bottom: 28px; line-height: 1.8; }
.category-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-stat { display: flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 9999px; background: rgba(13,26,18,0.75); border: 1px solid rgba(101,203,98,0.3); backdrop-filter: blur(6px); transition: all var(--transition); }
.hero-stat:hover { border-color: rgba(101,203,98,0.55); }
.hero-stat b { font-size: 1.15rem; color: var(--brand-accent); font-weight: 800; }
.hero-stat span { font-size: .78rem; color: var(--text-muted); }

/* ===== Section ===== */
.section { padding: 72px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); font-weight: 700; color: var(--text); line-height: 1.3; }
.section-head p { color: var(--text-muted); font-size: .95rem; max-width: 460px; margin-top: 6px; }
.section-kicker { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--brand-accent); font-weight: 600; letter-spacing: .05em; margin-bottom: 10px; }

/* ===== Feature Card ===== */
.feature-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: all var(--transition); height: 100%; }
.feature-card:hover { background: var(--bg-hover); border-color: rgba(101,203,98,0.3); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(101,203,98,0.14); color: var(--brand-accent); font-size: 1.15rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.05rem; color: var(--text); font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }

/* ===== Match Card ===== */
.match-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); height: 100%; display: flex; flex-direction: column; }
.match-card:hover { border-color: rgba(101,203,98,0.35); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.match-cover { position: relative; aspect-ratio: 16 / 10; overflow: hidden; flex-shrink: 0; }
.match-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.match-card:hover .match-cover img { transform: scale(1.06); }
.match-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,26,18,0) 40%, rgba(13,26,18,0.82) 100%); }
.match-status { position: absolute; top: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 9999px; background: rgba(13,26,18,0.78); border: 1px solid rgba(255,77,79,0.4); color: #FF4D4F; font-size: .75rem; font-weight: 700; }
.match-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #FF4D4F; animation: pulse 1.2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.match-hot { position: absolute; bottom: 12px; right: 12px; z-index: 2; padding: 4px 10px; border-radius: 9999px; background: rgba(13,26,18,0.72); border: 1px solid rgba(182,255,62,0.3); color: var(--brand-accent); font-size: .72rem; font-weight: 600; }
.match-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.match-tag { display: inline-block; align-self: flex-start; padding: 3px 10px; border-radius: 9999px; background: rgba(101,203,98,0.12); color: var(--brand); font-size: .72rem; font-weight: 600; margin-bottom: 10px; }
.match-body h3 { font-size: 1.05rem; color: var(--text); font-weight: 600; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.match-body p { font-size: .83rem; color: var(--text-muted); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.7; flex: 1; }
.match-meta { display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: var(--text-muted); }
.match-meta span i { color: var(--brand); margin-right: 4px; }

/* ===== League Chips ===== */
.league-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.league-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 9999px; background: var(--bg-alt); border: 1px solid var(--border); color: var(--text-body); font-size: .9rem; font-weight: 500; transition: all var(--transition); }
.league-chip i { color: var(--brand); font-size: .8rem; }
.league-chip:hover { border-color: rgba(101,203,98,0.4); color: var(--brand-accent); transform: translateY(-2px); }

/* ===== Steps ===== */
.process-section { background: linear-gradient(180deg, var(--bg-alt), var(--bg)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.step-item { position: relative; padding: 34px 22px 26px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all var(--transition); height: 100%; }
.step-item:hover { border-color: rgba(101,203,98,0.35); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.step-num { position: absolute; top: -14px; left: 20px; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-accent)); color: #0A120D; font-size: .85rem; font-weight: 800; box-shadow: 0 4px 12px rgba(101,203,98,0.3); }
.step-item h3 { color: var(--text); font-size: 1rem; font-weight: 600; margin-bottom: 8px; margin-top: 6px; }
.step-item p { color: var(--text-muted); font-size: .84rem; line-height: 1.7; }

/* ===== FAQ ===== */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition); }
.faq-item.open { border-color: rgba(101,203,98,0.35); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; cursor: pointer; user-select: none; transition: background var(--transition); }
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q h3 { font-size: .98rem; color: var(--text); font-weight: 600; line-height: 1.5; }
.faq-q i { color: var(--brand-accent); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 20px; color: var(--text-body); font-size: .9rem; line-height: 1.85; }
.faq-item.open .faq-a { display: block; }

/* ===== CTA ===== */
.cta-section { padding: 60px 0 90px; }
.cta-inner { position: relative; border-radius: 2rem; padding: 60px 48px; overflow: hidden; background: linear-gradient(135deg, var(--bg-hover), var(--bg-alt)); border: 1px solid rgba(101,203,98,0.22); }
.cta-inner::before { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(101,203,98,0.13); filter: blur(90px); top: -130px; right: -80px; pointer-events: none; }
.cta-inner::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(182,255,62,0.07); filter: blur(70px); bottom: -110px; left: 22%; pointer-events: none; }
.cta-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-content h2 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); color: var(--text); font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.cta-content p { color: var(--text-muted); max-width: 500px; font-size: .95rem; line-height: 1.8; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer { background: #0A120D; border-top: 2px solid rgba(101,203,98,0.3); padding-top: 56px; margin-top: 0; }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: .87rem; color: var(--text-muted); max-width: 320px; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); color: var(--text-muted); font-size: .86rem; transition: all var(--transition); }
.footer-social a:hover { border-color: var(--brand); color: var(--brand); background: rgba(101,203,98,0.08); }
.footer-col h4 { color: var(--text); font-size: .9rem; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-muted); font-size: .85rem; transition: all var(--transition); }
.footer-col ul a:hover { color: var(--brand-accent); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 0; border-top: 1px solid var(--border); color: var(--text-muted); font-size: .78rem; flex-wrap: wrap; }
.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--brand); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: var(--bg-alt); flex-direction: column; align-items: flex-start; padding: 90px 24px 32px; gap: 8px; transition: right var(--transition); box-shadow: -8px 0 30px rgba(0,0,0,0.45); z-index: 110; }
    .nav-menu.open { right: 0; }
    .nav-toggle { display: flex; }
    .nav-right .btn-primary { display: none; }
    .logo { font-size: 1.1rem; }
    .category-hero { min-height: 340px; }
    .cta-inner { padding: 42px 24px; border-radius: 1.25rem; }
    .section { padding: 52px 0; }
}
@media (max-width: 520px) {
    .container { padding: 0 16px; }
    .section { padding: 44px 0; }
    .section-head { margin-bottom: 26px; }
    .hero-stats { gap: 8px; }
    .hero-stat { padding: 8px 14px; }
    .hero-stat b { font-size: 1rem; }
    .footer-main { grid-template-columns: 1fr; gap: 26px; }
    .category-hero { min-height: 320px; }
    .cta-content h2 { font-size: 1.4rem; }
    .btn-primary, .btn-ghost { padding: 9px 18px; font-size: .85rem; }
}

/* roulang page: category3 */
:root {
  --kiwi: #65CB62;
  --kiwi-neon: #B6FF3E;
  --bg-main: #0D1A12;
  --bg-card: #14261B;
  --bg-hover: #1E3526;
  --text-heading: #C9D6CE;
  --text-body: #9FB3A8;
  --text-muted: #6B8B77;
  --border-soft: rgba(255,255,255,0.08);
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --radius-pill: 9999px;
  --shadow-card: 0 8px 30px rgba(0,0,0,0.35);
  --shadow-hover: 0 16px 40px rgba(101,203,98,0.16);
  --gradient-btn: linear-gradient(135deg, #65CB62, #B6FF3E);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"PingFang SC","Hiragino Sans GB","Microsoft YaHei",Inter,Arial,sans-serif;
  background:#0D1A12;
  color:#9FB3A8;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
}
.container{max-width:1280px;margin:0 auto;padding:0 1.5rem}
a{color:inherit;text-decoration:none}
a:focus-visible,button:focus-visible,input:focus-visible{outline:2px solid #B6FF3E;outline-offset:2px}
img{max-width:100%;display:block}
button{font-family:inherit;cursor:pointer}
.no-scroll{overflow:hidden}

/* Header */
.site-header{
  position:sticky;top:0;z-index:100;
  background:linear-gradient(180deg,rgba(13,26,18,0.96),rgba(13,26,18,0.82));
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(101,203,98,0.15);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:68px;gap:1rem}
.logo{display:flex;align-items:center;gap:.6rem;font-weight:800;font-size:1.25rem;color:#C9D6CE;white-space:nowrap}
.logo-orb{
  width:36px;height:36px;border-radius:50%;
  background:radial-gradient(circle at 32% 30%,#B6FF3E 0%,#65CB62 42%,#1E5A32 100%);
  display:flex;align-items:center;justify-content:center;
  color:#0D1A12;font-size:.9rem;
  box-shadow:0 0 18px rgba(101,203,98,0.45);
}
.nav-menu{display:flex;align-items:center;gap:2rem;list-style:none}
.nav-link{
  font-size:.9375rem;font-weight:500;color:#9FB3A8;position:relative;
  padding:.35rem 0;transition:color .3s ease;
}
.nav-link::after{
  content:"";position:absolute;left:0;bottom:0;width:0;height:2px;
  background:linear-gradient(90deg,#65CB62,#B6FF3E);
  transition:width .3s ease;border-radius:2px;
}
.nav-link:hover{color:#C9D6CE}
.nav-link:hover::after,.nav-link.active::after{width:100%}
.nav-link.active{color:#65CB62}
.nav-right{display:flex;align-items:center;gap:.85rem}
.search-toggle{
  background:none;border:1px solid rgba(255,255,255,0.12);color:#9FB3A8;
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:all .3s ease;
}
.search-toggle:hover{color:#65CB62;border-color:#65CB62;background:rgba(101,203,98,0.1)}
.btn-primary{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--gradient-btn);color:#0D1A12;font-weight:700;
  padding:.55rem 1.35rem;border-radius:9999px;font-size:.875rem;
  box-shadow:0 4px 20px rgba(101,203,98,0.35);
  transition:all .3s ease;white-space:nowrap;
}
.btn-primary:hover{filter:brightness(1.1);transform:translateY(-1px);box-shadow:0 8px 28px rgba(101,203,98,0.45)}
.btn-secondary{
  display:inline-flex;align-items:center;gap:.5rem;
  background:transparent;color:#65CB62;font-weight:600;
  padding:.55rem 1.35rem;border-radius:9999px;font-size:.875rem;
  border:1px solid rgba(101,203,98,0.5);
  transition:all .3s ease;white-space:nowrap;
}
.btn-secondary:hover{background:rgba(101,203,98,0.12);border-color:#65CB62}
.nav-toggle{background:none;border:none;display:none;flex-direction:column;gap:5px;padding:6px}
.nav-toggle span{width:22px;height:2px;background:#C9D6CE;border-radius:2px;transition:all .3s ease}
.search-box{
  max-height:0;overflow:hidden;transition:max-height .35s ease;
}
.search-box.show{max-height:70px}
.search-box input{
  width:100%;padding:.75rem 1.25rem;background:#0D1A12;border:1px solid rgba(101,203,98,0.3);
  color:#C9D6CE;border-radius:9999px;margin:.6rem 0;font-size:.9375rem;
}
.search-box input::placeholder{color:#6B8B77}
.nav-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.5);z-index:99;display:none}
.nav-overlay.show{display:block}

/* Sections */
.section{position:relative;padding:5rem 0}
.section-alt{background:#0A120D}
.section-label{
  display:inline-flex;align-items:center;gap:.45rem;
  font-size:.8125rem;letter-spacing:.12em;color:#65CB62;font-weight:600;
  text-transform:uppercase;
}
.section-title{
  font-size:clamp(1.75rem,2.5vw,2.25rem);font-weight:700;color:#C9D6CE;
  line-height:1.3;margin-top:.6rem;
}
.section-sub{color:#6B8B77;font-size:1rem;margin-top:.7rem;max-width:640px}

/* Category Hero */
.cat-hero{
  position:relative;min-height:380px;display:flex;align-items:center;
  background-size:cover;background-position:center;
}
.cat-hero::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(13,26,18,0.92) 0%,rgba(13,26,18,0.72) 45%,rgba(13,26,18,0.35) 100%),
  linear-gradient(180deg,rgba(13,26,18,0.5) 0%,transparent 50%,#0D1A12 100%);
}
.cat-hero-content{position:relative;z-index:2;padding:4rem 0 5rem;max-width:720px}
.cat-hero .hero-kicker{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(13,26,18,0.7);border:1px solid rgba(101,203,98,0.35);
  color:#B6FF3E;padding:.35rem 1rem;border-radius:9999px;
  font-size:.8125rem;font-weight:600;letter-spacing:.06em;margin-bottom:1.25rem;
}
.cat-hero h1{
  font-size:clamp(2.5rem,4.5vw,3.75rem);font-weight:800;color:#E6EEE8;
  line-height:1.15;text-shadow:0 4px 30px rgba(0,0,0,0.5);
}
.cat-hero .hero-desc{
  margin-top:.9rem;font-size:1.0625rem;color:#B8C9BF;max-width:600px;
  line-height:1.8;
}
.cat-hero .hero-ctas{margin-top:1.75rem;display:flex;gap:.9rem;flex-wrap:wrap}
.hero-stats{
  display:flex;gap:1.25rem;margin-top:2rem;flex-wrap:wrap;
}
.hero-stat{
  background:rgba(13,26,18,0.7);border:1px solid rgba(101,203,98,0.35);
  border-radius:.75rem;padding:.7rem 1.2rem;min-width:120px;
}
.hero-stat .num{font-size:1.4rem;font-weight:800;color:#B6FF3E;display:block;line-height:1.2}
.hero-stat .lab{font-size:.75rem;color:#6B8B77;margin-top:.15rem}

/* Feature cards */
.feature-card{
  background:#14261B;border:1px solid var(--border-soft);border-radius:var(--radius-lg);
  padding:1.75rem 1.5rem;transition:all .3s ease;height:100%;
}
.feature-card:hover{background:#1E3526;transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:rgba(101,203,98,0.25)}
.feature-icon{
  width:46px;height:46px;border-radius:.8rem;
  background:rgba(101,203,98,0.14);border:1px solid rgba(101,203,98,0.28);
  display:flex;align-items:center;justify-content:center;
  color:#65CB62;font-size:1.15rem;margin-bottom:1rem;
}
.feature-card h3{color:#C9D6CE;font-size:1.075rem;font-weight:600;margin-bottom:.5rem}
.feature-card p{font-size:.875rem;color:#6B8B77;line-height:1.75}

/* Match cards */
.match-card{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  background:#14261B;border:1px solid var(--border-soft);
  transition:all .35s ease;height:100%;
}
.match-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover);border-color:rgba(101,203,98,0.35)}
.match-card .media{position:relative;aspect-ratio:16/10;overflow:hidden;background:#0A120D}
.match-card .media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.match-card:hover .media img{transform:scale(1.06)}
.match-card .media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(13,26,18,0.08) 30%,rgba(13,26,18,0.82) 100%);
}
.match-badge{
  position:absolute;top:.8rem;right:.8rem;z-index:2;
  display:inline-flex;align-items:center;gap:.35rem;
  background:rgba(13,26,18,0.78);border:1px solid rgba(101,203,98,0.35);
  color:#B6FF3E;font-size:.72rem;font-weight:700;padding:.25rem .7rem;border-radius:9999px;
  backdrop-filter:blur(4px);
}
.match-live{position:absolute;top:.8rem;left:.8rem;z-index:2;display:flex;align-items:center;gap:.35rem;background:rgba(13,26,18,0.78);border:1px solid rgba(255,77,79,0.5);color:#FF6B6B;font-size:.72rem;font-weight:700;padding:.25rem .65rem;border-radius:9999px}
.match-live .dot{width:6px;height:6px;border-radius:50%;background:#FF4D4F;animation:blink 1.4s infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.35}}
.match-body{padding:1.1rem 1.2rem 1.25rem}
.match-body h3{color:#C9D6CE;font-size:1.05rem;font-weight:600;margin-bottom:.35rem}
.match-body p{font-size:.83rem;color:#6B8B77;line-height:1.7}
.match-meta{display:flex;justify-content:space-between;align-items:center;margin-top:.8rem}
.match-meta .tag{display:inline-flex;align-items:center;gap:.3rem;font-size:.75rem;color:#65CB62}
.match-meta .views{font-size:.75rem;color:#6B8B77}

/* Scene cards */
.scene-card{
  border-radius:var(--radius-lg);padding:2rem 1.5rem;text-align:center;
  background:linear-gradient(160deg,#14261B 0%,#102017 100%);
  border:1px solid var(--border-soft);transition:all .3s ease;height:100%;
}
.scene-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:rgba(101,203,98,0.3)}
.scene-card .icon{
  width:56px;height:56px;margin:0 auto 1rem;border-radius:50%;
  background:rgba(101,203,98,0.14);border:1px solid rgba(101,203,98,0.3);
  display:flex;align-items:center;justify-content:center;color:#B6FF3E;font-size:1.3rem;
}
.scene-card h3{color:#C9D6CE;font-size:1.1rem;font-weight:600;margin-bottom:.5rem}
.scene-card p{font-size:.875rem;color:#6B8B77;line-height:1.75}

/* Steps */
.step-card{text-align:center;padding:1.5rem 1rem;position:relative}
.step-num{
  width:52px;height:52px;margin:0 auto 1rem;border-radius:50%;
  background:var(--gradient-btn);color:#0D1A12;font-weight:800;font-size:1.25rem;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 22px rgba(101,203,98,0.3);
}
.step-card h3{color:#C9D6CE;font-size:1.05rem;font-weight:600;margin-bottom:.45rem}
.step-card p{font-size:.875rem;color:#6B8B77;max-width:300px;margin:0 auto;line-height:1.75}
.step-line{
  position:absolute;top:52px;left:60%;width:80%;height:1px;
  background:linear-gradient(90deg,rgba(101,203,98,0.5),rgba(101,203,98,0.08));
}

/* FAQ */
.faq-item{
  background:#14261B;border:1px solid var(--border-soft);border-radius:.75rem;
  margin-bottom:.85rem;overflow:hidden;transition:border-color .3s ease;
}
.faq-item.open{border-color:rgba(101,203,98,0.4)}
.faq-question{
  width:100%;display:flex;justify-content:space-between;align-items:center;
  padding:1.15rem 1.5rem;background:transparent;border:none;text-align:left;
  color:#C9D6CE;font-size:.975rem;font-weight:600;transition:color .3s ease;
}
.faq-question:hover{color:#65CB62}
.faq-icon{
  width:24px;height:24px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(101,203,98,0.4);color:#65CB62;
  font-size:.65rem;transition:all .3s ease;
}
.faq-item.open .faq-icon{transform:rotate(45deg);background:rgba(101,203,98,0.15)}
.faq-answer{
  max-height:0;overflow:hidden;transition:max-height .35s ease;
}
.faq-item.open .faq-answer{max-height:260px}
.faq-answer p{padding:0 1.5rem 1.2rem;font-size:.9rem;color:#6B8B77;line-height:1.75}

/* CTA */
.cta-section{
  position:relative;border-radius:2rem;overflow:hidden;
  background:linear-gradient(135deg,#0D1A12 0%,#1E3526 55%,#3A7A48 130%);
  border:1px solid rgba(101,203,98,0.18);
  padding:3.5rem 2.5rem;
}
.cta-section .glow{
  position:absolute;border-radius:50%;filter:blur(80px);opacity:.5;pointer-events:none;
}
.cta-section .glow-1{width:320px;height:320px;background:#65CB62;top:-80px;right:10%}
.cta-section .glow-2{width:200px;height:200px;background:#B6FF3E;bottom:-60px;left:5%;opacity:.25}
.cta-content{position:relative;z-index:2;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:2rem}
.cta-content h2{font-size:clamp(1.5rem,2.5vw,2.15rem);font-weight:800;color:#E6EEE8;line-height:1.3;margin-bottom:.6rem}
.cta-content p{color:#9FB3A8;font-size:.95rem;max-width:500px}
.cta-form{display:flex;gap:.6rem;flex-wrap:wrap;align-items:center}
.cta-form input{
  width:240px;padding:.65rem 1.2rem;background:#0D1A12;border:1px solid rgba(255,255,255,0.15);
  color:#C9D6CE;border-radius:9999px;font-size:.875rem;transition:all .3s ease;
}
.cta-form input::placeholder{color:#6B8B77}
.cta-form input:focus{border-color:#B6FF3E;box-shadow:0 0 0 3px rgba(182,255,62,0.2);outline:none}
.cta-note{margin-top:.75rem;font-size:.75rem;color:#6B8B77}

/* Footer */
.site-footer{background:#0A120D;border-top:1px solid rgba(101,203,98,0.2);padding:4rem 0 0}
.footer-main{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:2.5rem;padding-bottom:2.5rem}
.footer-brand p{font-size:.875rem;color:#6B8B77;line-height:1.75;margin-top:.9rem}
.footer-social{display:flex;gap:.7rem;margin-top:1.2rem}
.footer-social a{
  width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,0.12);
  display:flex;align-items:center;justify-content:center;color:#6B8B77;font-size:.9rem;transition:all .3s ease;
}
.footer-social a:hover{color:#65CB62;border-color:#65CB62;background:rgba(101,203,98,0.08)}
.footer-col h4{color:#C9D6CE;font-size:.95rem;font-weight:600;margin-bottom:1rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.55rem}
.footer-col ul a{font-size:.875rem;color:#6B8B77;transition:all .25s ease}
.footer-col ul a:hover{color:#65CB62;padding-left:4px}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.06);padding:1.2rem 0;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.6rem;
  font-size:.78rem;color:#6B8B77;
}
.footer-bottom a{color:#65CB62}
.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}
.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-3{margin-bottom:.75rem}
.me-1{margin-right:.25rem}

/* Responsive */
@media(max-width:1024px){
  .footer-main{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-menu{
    position:fixed;top:0;right:-300px;width:280px;height:100vh;
    background:#0D1A12;border-left:1px solid rgba(101,203,98,0.15);
    flex-direction:column;align-items:flex-start;padding:90px 2rem 2rem;gap:1.25rem;
    transition:right .35s ease;z-index:1000;
  }
  .nav-menu.open{right:0}
  .nav-menu li{width:100%}
  .nav-link{display:block;font-size:1.05rem;padding:.5rem 0}
  .nav-toggle{display:flex}
  .nav-right .btn-primary span{display:none}
  .section{padding:3.5rem 0}
  .cat-hero{min-height:340px}
  .cat-hero-content{padding:3rem 0 3.5rem}
  .cta-section{padding:2.5rem 1.5rem}
  .cta-form input{width:100%}
  .step-line{display:none}
}
@media(max-width:520px){
  .container{padding:0 1rem}
  .nav-inner{height:60px}
  .logo{font-size:1.05rem}
  .footer-main{grid-template-columns:1fr;gap:1.8rem}
  .footer-bottom{flex-direction:column;text-align:center}
  .hero-stats{flex-direction:column}
  .cat-hero h1{font-size:2.1rem}
}
