*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --green-dark:#002b00;
  --green-mid:#004d00;
  --green-light:#006600;
  --gold:#d4a017;
  --gold-light:#f0c040;
  --text-light:#e8f5e8;
  --text-muted:#a8c8a8;
  --white:#fff;
  --radius:8px;
}
html{scroll-behavior:smooth}
body{font-family:'Segoe UI',Arial,sans-serif;background:var(--green-dark);color:var(--text-light);font-size:15px;line-height:1.6}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

/* NAV */
header{background:#001a00;border-bottom:2px solid var(--gold);position:sticky;top:0;z-index:100}
.nav-inner{max-width:1200px;margin:0 auto;padding:0 16px;display:flex;align-items:center;gap:12px;height:60px}
.logo{font-size:1.6rem;font-weight:900;color:var(--gold);letter-spacing:1px;flex-shrink:0}
.logo span{color:var(--white)}
nav{display:flex;align-items:center;gap:4px;margin-left:auto}
nav a{padding:6px 10px;border-radius:var(--radius);font-size:.85rem;font-weight:600;color:var(--text-muted);transition:all .2s}
nav a:hover,nav a.active{color:var(--gold-light);background:rgba(212,160,23,.15)}
nav a.active{border-bottom:2px solid var(--gold)}
.nav-btns{display:flex;gap:8px;margin-left:8px}
.btn-login{padding:7px 16px;border-radius:var(--radius);border:1px solid var(--gold);color:var(--gold);font-weight:700;font-size:.85rem;transition:all .2s}
.btn-login:hover{background:var(--gold);color:#000}
.btn-register{padding:7px 16px;border-radius:var(--radius);background:var(--gold);color:#000;font-weight:700;font-size:.85rem;transition:all .2s}
.btn-register:hover{background:var(--gold-light)}
.menu-toggle{display:none;background:none;border:none;cursor:pointer;color:var(--gold);font-size:1.5rem;margin-left:auto}

/* HERO */
.hero{position:relative;overflow:hidden;background:#001500}
.hero img{width:100%;height:480px;object-fit:cover;object-position:center top}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(0,27,0,.85) 45%,rgba(0,27,0,.2));display:flex;align-items:center}
.hero-content{max-width:1200px;margin:0 auto;padding:0 24px;width:100%}
.hero-content h1{font-size:2.4rem;font-weight:900;color:var(--gold-light);line-height:1.2;max-width:560px;text-shadow:0 2px 8px rgba(0,0,0,.6)}
.hero-content p{margin-top:14px;font-size:1.05rem;color:var(--text-light);max-width:480px}
.hero-badges{display:flex;gap:10px;margin-top:20px;flex-wrap:wrap}
.badge{background:rgba(212,160,23,.2);border:1px solid var(--gold);border-radius:20px;padding:4px 14px;font-size:.8rem;color:var(--gold-light);font-weight:600}
.hero-btns{display:flex;gap:12px;margin-top:24px;flex-wrap:wrap}
.btn-primary{padding:12px 28px;background:var(--gold);color:#000;border-radius:var(--radius);font-weight:800;font-size:1rem;transition:all .2s}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-2px)}
.btn-secondary{padding:12px 28px;border:2px solid var(--gold);color:var(--gold);border-radius:var(--radius);font-weight:700;font-size:1rem;transition:all .2s}
.btn-secondary:hover{background:rgba(212,160,23,.15)}

/* STATS BAR */
.stats-bar{background:linear-gradient(90deg,#003300,#004d00,#003300);border-top:1px solid rgba(212,160,23,.3);border-bottom:1px solid rgba(212,160,23,.3)}
.stats-inner{max-width:1200px;margin:0 auto;padding:16px 24px;display:flex;justify-content:space-around;flex-wrap:wrap;gap:12px}
.stat-item{text-align:center}
.stat-item .num{font-size:1.5rem;font-weight:900;color:var(--gold-light)}
.stat-item .label{font-size:.75rem;color:var(--text-muted);margin-top:2px}

/* SECTIONS */
.section{padding:56px 0}
.section-alt{background:rgba(0,40,0,.5)}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.section-header{text-align:center;margin-bottom:36px}
.section-header h2{font-size:1.8rem;font-weight:900;color:var(--gold-light);position:relative;display:inline-block;padding-bottom:12px}
.section-header h2::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:60px;height:3px;background:var(--gold);border-radius:2px}
.section-header p{margin-top:12px;color:var(--text-muted);font-size:.95rem}

/* BANNER STRIP */
.banner-strip{background:#001500;padding:10px 0;overflow:hidden}
.banner-strip img{width:100%;max-height:284px;object-fit:cover}

/* GAME GRID */
.game-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:16px}
.game-card{background:#002b00;border:1px solid rgba(212,160,23,.2);border-radius:var(--radius);overflow:hidden;transition:transform .2s,box-shadow .2s;cursor:pointer}
.game-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(212,160,23,.2)}
.game-card img{width:100%;aspect-ratio:1/1;object-fit:cover}
.game-card-label{padding:8px;text-align:center;font-size:.8rem;font-weight:600;color:var(--text-light)}

/* FEATURES */
.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px}
.feature-card{background:linear-gradient(135deg,#002b00,#003d00);border:1px solid rgba(212,160,23,.25);border-radius:var(--radius);padding:24px;transition:border-color .2s}
.feature-card:hover{border-color:var(--gold)}
.feature-icon{font-size:2.2rem;margin-bottom:12px}
.feature-card h3{font-size:1rem;font-weight:700;color:var(--gold-light);margin-bottom:8px}
.feature-card p{font-size:.85rem;color:var(--text-muted);line-height:1.6}

/* PROMO */
.promo-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.promo-card{border-radius:var(--radius);overflow:hidden;position:relative;border:1px solid rgba(212,160,23,.3)}
.promo-card img{width:100%;height:auto;display:block}
.promo-badge{position:absolute;top:10px;left:10px;background:var(--gold);color:#000;font-size:.75rem;font-weight:800;padding:3px 10px;border-radius:20px}

/* ARTICLE / BRAND STORY */
.brand-story{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.brand-story-text h2{font-size:1.6rem;font-weight:900;color:var(--gold-light);margin-bottom:16px}
.brand-story-text p{color:var(--text-muted);margin-bottom:12px;font-size:.9rem}
.brand-story-text .highlight{color:var(--gold-light);font-weight:700}
.brand-story img{border-radius:var(--radius);border:2px solid rgba(212,160,23,.3);width:344px;height:147px;object-fit:cover}

/* TESTIMONIAL */
.testimonial{background:linear-gradient(135deg,#001a00,#003300);border:1px solid rgba(212,160,23,.3);border-radius:var(--radius);padding:28px;margin:0 auto;max-width:700px;text-align:center}
.testimonial blockquote{font-size:1rem;color:var(--text-light);font-style:italic;line-height:1.7}
.testimonial cite{display:block;margin-top:12px;color:var(--gold);font-weight:600;font-size:.85rem;font-style:normal}

/* FAQ */
.faq-list{display:grid;gap:12px;max-width:800px;margin:0 auto}
.faq-item{background:#002000;border:1px solid rgba(212,160,23,.2);border-radius:var(--radius);padding:20px 24px;cursor:pointer;transition:border-color .2s}
.faq-item:hover{border-color:var(--gold)}
.faq-item h4{font-size:.95rem;font-weight:700;color:var(--gold-light);margin-bottom:8px}
.faq-item p{font-size:.87rem;color:var(--text-muted);line-height:1.65}
.faq-item ul{margin-top:8px;padding-left:18px}
.faq-item ul li{font-size:.85rem;color:var(--text-muted);margin-bottom:4px}

/* CTA BANNER */
.cta-banner{background:linear-gradient(135deg,#004d00,#002b00);border-top:2px solid var(--gold);border-bottom:2px solid var(--gold);padding:48px 0;text-align:center}
.cta-banner h2{font-size:1.8rem;font-weight:900;color:var(--gold-light);margin-bottom:12px}
.cta-banner p{color:var(--text-muted);margin-bottom:24px;font-size:.95rem}

/* FOOTER */
footer{background:#000f00;border-top:2px solid rgba(212,160,23,.3);padding:48px 0 24px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:32px;margin-bottom:32px}
.footer-brand .logo{font-size:1.4rem;margin-bottom:12px}
.footer-brand p{font-size:.82rem;color:var(--text-muted);line-height:1.65}
.footer-col h4{color:var(--gold);font-size:.9rem;font-weight:700;margin-bottom:14px;border-bottom:1px solid rgba(212,160,23,.2);padding-bottom:6px}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:8px}
.footer-col ul li a{font-size:.82rem;color:var(--text-muted);transition:color .2s}
.footer-col ul li a:hover{color:var(--gold-light)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:20px;text-align:center;font-size:.78rem;color:var(--text-muted)}
.footer-bottom span{color:var(--gold)}
.age-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(212,160,23,.1);border:1px solid var(--gold);border-radius:20px;padding:4px 12px;font-size:.8rem;color:var(--gold);margin-top:12px}

/* MOBILE */
@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .brand-story{grid-template-columns:1fr}
  .brand-story img{width:100%;height:auto}
  .promo-grid{grid-template-columns:1fr}
}
@media(max-width:680px){
  nav{display:none;flex-direction:column;position:fixed;top:60px;left:0;right:0;background:#001a00;padding:16px;border-bottom:2px solid var(--gold);z-index:200;gap:4px}
  nav.open{display:flex}
  nav a{width:100%;padding:10px 16px;font-size:.95rem}
  .nav-btns{margin-left:0;width:100%;display:flex;justify-content:center}
  .menu-toggle{display:block}
  .nav-inner{flex-wrap:wrap}
  .logo{order:1}
  .menu-toggle{order:2}
  .hero img{height:280px}
  .hero-content h1{font-size:1.5rem}
  .game-grid{grid-template-columns:repeat(3,1fr);gap:10px}
  .stats-inner{gap:16px}
  .stat-item .num{font-size:1.2rem}
  .footer-grid{grid-template-columns:1fr}
}
.section-header h2::after img{width:100%;height:100%;object-fit:cover;object-position:center}