*{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg-dark:#0d2d1e;
  --bg-card:#0f3d28;
  --bg-sidebar:#0a2518;
  --accent:#f0a500;
  --accent2:#e8c84a;
  --green:#1a6b3c;
  --green-light:#22a05a;
  --text:#e8f5ef;
  --text-muted:#8bb89e;
  --border:#1e4d32;
  --red:#e03c31;
  --nav-h:56px;
}
body{background:var(--bg-dark);color:var(--text);font-family:'Segoe UI',Arial,sans-serif;font-size:14px;line-height:1.5}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

/* TOPBAR */
.topbar{background:#061a10;height:36px;display:flex;align-items:center;justify-content:space-between;padding:0 16px;border-bottom:1px solid var(--border);font-size:12px;color:var(--text-muted)}
.topbar-left{display:flex;align-items:center;gap:12px}
.topbar-marquee{flex:1;overflow:hidden;white-space:nowrap}
.topbar-marquee span{display:inline-block;animation:marquee 30s linear infinite;color:var(--accent)}
@keyframes marquee{0%{transform:translateX(100%)}100%{transform:translateX(-100%)}}
.topbar-right{display:flex;align-items:center;gap:8px}

/* NAVBAR */
nav{background:#092010;height:var(--nav-h);display:flex;align-items:center;justify-content:space-between;padding:0 16px;position:sticky;top:0;z-index:999;border-bottom:2px solid var(--accent)}
.logo{font-size:26px;font-weight:900;color:var(--accent);letter-spacing:1px;text-shadow:0 0 12px rgba(240,165,0,.5)}
.nav-links{display:flex;align-items:center;gap:4px}
.nav-links a{padding:6px 12px;border-radius:4px;font-size:13px;font-weight:600;color:var(--text-muted);transition:all .2s}
.nav-links a:hover,.nav-links a.active{color:var(--accent);background:rgba(240,165,0,.1)}
.nav-links a.active{border-bottom:2px solid var(--accent)}
.nav-auth{display:flex;gap:8px;align-items:center}
.btn-login{padding:7px 18px;border-radius:4px;border:1px solid var(--accent);color:var(--accent);font-weight:700;font-size:13px;transition:all .2s}
.btn-login:hover{background:rgba(240,165,0,.15)}
.btn-reg{padding:7px 18px;border-radius:4px;background:linear-gradient(135deg,#f0a500,#e8c84a);color:#061a10;font-weight:700;font-size:13px;transition:all .2s}
.btn-reg:hover{opacity:.9;transform:translateY(-1px)}
.nav-toggle{display:none;flex-direction:column;gap:4px;cursor:pointer;padding:4px}
.nav-toggle span{width:22px;height:2px;background:var(--accent);border-radius:2px;transition:all .3s}

/* HERO BANNER */
.hero{background:linear-gradient(135deg,#0a2518 0%,#0f4a2a 40%,#1a6b3c 100%);padding:0;overflow:hidden;position:relative}
.hero-inner{display:flex;align-items:stretch;min-height:220px}
.hero-content{flex:1;padding:32px 24px;display:flex;flex-direction:column;justify-content:center;z-index:2}
.hero-tag{display:inline-block;background:var(--red);color:#fff;font-size:11px;font-weight:700;padding:3px 10px;border-radius:12px;margin-bottom:12px;text-transform:uppercase;letter-spacing:.5px}
.hero-content h1{font-size:clamp(22px,4vw,38px);font-weight:900;line-height:1.2;color:#fff;margin-bottom:8px}
.hero-content h1 span{color:var(--accent)}
.hero-content p{font-size:14px;color:#b8d4c4;margin-bottom:20px;max-width:480px}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}
.hero-btns .btn-primary{padding:11px 28px;background:linear-gradient(135deg,#f0a500,#e8c84a);color:#061a10;font-weight:800;font-size:14px;border-radius:6px;transition:all .2s}
.hero-btns .btn-primary:hover{transform:translateY(-2px);box-shadow:0 4px 16px rgba(240,165,0,.4)}
.hero-btns .btn-outline{padding:11px 28px;border:2px solid var(--accent);color:var(--accent);font-weight:700;font-size:14px;border-radius:6px;transition:all .2s}
.hero-btns .btn-outline:hover{background:rgba(240,165,0,.1)}
.hero-badge{display:flex;gap:16px;margin-top:20px;flex-wrap:wrap}
.hero-badge-item{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--text-muted)}
.hero-badge-item svg{width:16px;height:16px;fill:var(--accent)}
.hero-img{display:flex;align-items:flex-end;justify-content:flex-end;min-width:260px;position:relative;overflow:hidden}
.hero-img img{height:220px;width:auto;object-fit:cover;object-position:top}

/* STATS BAR */
.stats-bar{background:#061a10;padding:12px 16px;display:flex;gap:24px;overflow-x:auto;border-bottom:1px solid var(--border)}
.stats-bar::-webkit-scrollbar{height:3px}
.stats-bar::-webkit-scrollbar-thumb{background:var(--border)}
.stat-item{display:flex;align-items:center;gap:8px;white-space:nowrap;min-width:fit-content}
.stat-num{font-size:18px;font-weight:900;color:var(--accent)}
.stat-label{font-size:11px;color:var(--text-muted);line-height:1.2}

/* SECTION HEADER */
.section-header{display:flex;align-items:center;justify-content:space-between;padding:20px 16px 12px;border-bottom:2px solid var(--border)}
.section-header h2{font-size:16px;font-weight:800;color:var(--accent);display:flex;align-items:center;gap:8px}
.section-header h2::before{content:'';width:4px;height:18px;background:var(--accent);border-radius:2px;display:inline-block}
.section-header a{font-size:12px;color:var(--green-light);font-weight:600}
.section-header a:hover{color:var(--accent)}

/* GAME TABS */
.game-tabs{display:flex;gap:4px;padding:12px 16px 0;overflow-x:auto;background:var(--bg-card)}
.game-tabs::-webkit-scrollbar{height:2px}
.tab-btn{padding:6px 14px;border-radius:20px;border:1px solid var(--border);background:transparent;color:var(--text-muted);font-size:12px;font-weight:600;cursor:pointer;white-space:nowrap;transition:all .2s}
.tab-btn.active,.tab-btn:hover{background:var(--accent);color:#061a10;border-color:var(--accent)}

/* GAME GRID */
.game-section{background:var(--bg-card);margin-bottom:8px;padding-bottom:16px}
.game-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:10px;padding:12px 16px}
.game-card{background:var(--bg-dark);border-radius:8px;overflow:hidden;border:1px solid var(--border);transition:all .25s;cursor:pointer;position:relative}
.game-card:hover{transform:translateY(-3px);border-color:var(--accent);box-shadow:0 6px 20px rgba(240,165,0,.2)}
.game-card img{width:100%;height:auto;object-fit:contain}
.game-card-info{padding:6px 8px}
.game-card-name{font-size:11px;font-weight:700;color:var(--text);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.game-card-provider{font-size:10px;color:var(--text-muted)}
.game-card-badge{position:absolute;top:6px;left:6px;background:var(--red);color:#fff;font-size:9px;font-weight:700;padding:2px 6px;border-radius:3px;text-transform:uppercase}
.game-card-badge.hot{background:#e67e22}
.game-card-badge.new{background:#27ae60}
.game-play-overlay{position:absolute;inset:0;background:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .2s}
.game-card:hover .game-play-overlay{opacity:1}
.play-btn{background:var(--accent);color:#061a10;padding:6px 14px;border-radius:4px;font-size:11px;font-weight:800}

/* LIVE CASINO GRID */
.live-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:10px;padding:12px 16px}
.live-card{border-radius:8px;overflow:hidden;position:relative;cursor:pointer;border:1px solid var(--border);transition:all .25s}
.live-card:hover{transform:translateY(-3px);border-color:var(--accent)}
.live-card img{width:100%;height:auto;object-fit:contain}
.live-badge{position:absolute;top:8px;right:8px;background:var(--red);color:#fff;font-size:10px;font-weight:700;padding:2px 8px;border-radius:10px;display:flex;align-items:center;gap:4px}
.live-badge::before{content:'';width:6px;height:6px;background:#fff;border-radius:50%;animation:blink 1s infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}
.live-info{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(0,0,0,.8));padding:20px 10px 8px}
.live-name{font-size:12px;font-weight:700;color:#fff}
.live-players{font-size:10px;color:var(--accent)}

/* PROMOTIONS */
.promo-section{background:var(--bg-card);margin-bottom:8px}
.promo-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:12px;padding:12px 16px}
.promo-card{background:linear-gradient(135deg,var(--bg-dark),#0f3d28);border-radius:10px;overflow:hidden;border:1px solid var(--border);display:flex;align-items:center;gap:0;transition:all .25s}
.promo-card:hover{border-color:var(--accent);transform:translateY(-2px)}
.promo-card img{width:130px;height:auto;object-fit:contain;flex-shrink:0}
.promo-body{padding:14px;flex:1}
.promo-tag{font-size:10px;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px}
.promo-body h3{font-size:15px;font-weight:800;color:#fff;margin-bottom:6px}
.promo-body p{font-size:12px;color:var(--text-muted);margin-bottom:10px}
.promo-btn{display:inline-block;padding:6px 16px;background:var(--accent);color:#061a10;font-weight:800;font-size:12px;border-radius:4px}

/* ABOUT SECTION */
.about-section{background:var(--bg-card);margin-bottom:8px;padding:24px 16px}
.about-section h2{font-size:20px;font-weight:900;color:var(--accent);margin-bottom:16px}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.about-text p{font-size:13px;color:var(--text-muted);margin-bottom:12px;line-height:1.7}
.about-text p strong{color:var(--text)}
.about-features{display:flex;flex-direction:column;gap:10px}
.feature-item{display:flex;align-items:flex-start;gap:10px;background:var(--bg-dark);padding:12px;border-radius:8px;border:1px solid var(--border)}
.feature-icon{width:36px;height:36px;background:rgba(240,165,0,.15);border-radius:6px;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:18px}
.feature-title{font-size:13px;font-weight:700;color:var(--text);margin-bottom:2px}
.feature-desc{font-size:11px;color:var(--text-muted)}

/* FAQ */
.faq-section{background:var(--bg-card);margin-bottom:8px;padding:20px 16px}
.faq-section h2{font-size:18px;font-weight:900;color:var(--accent);margin-bottom:16px}
.faq-list{display:flex;flex-direction:column;gap:8px}
.faq-item{background:var(--bg-dark);border:1px solid var(--border);border-radius:8px;overflow:hidden}
.faq-item h4{padding:14px 16px;font-size:14px;font-weight:700;color:var(--text);cursor:pointer;display:flex;justify-content:space-between;align-items:center;transition:color .2s}
.faq-item h4:hover{color:var(--accent)}
.faq-item h4::after{content:'＋';font-size:18px;color:var(--accent);transition:transform .3s}
.faq-item.open h4::after{transform:rotate(45deg)}
.faq-item p{padding:0 16px 14px;font-size:13px;color:var(--text-muted);line-height:1.7;display:none}
.faq-item.open p{display:block}
.faq-item ul{padding:4px 0 0 16px;list-style:disc}
.faq-item ul li{color:var(--text-muted);font-size:13px;margin-bottom:4px}

/* REVIEW */
.review-section{background:var(--bg-dark);padding:20px 16px;margin-bottom:8px}
.review-section h2{font-size:16px;font-weight:800;color:var(--accent);margin-bottom:14px}
.review-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:12px}
.review-card{background:var(--bg-card);border:1px solid var(--border);border-radius:8px;padding:14px}
.review-stars{color:var(--accent);font-size:14px;margin-bottom:6px}
.review-text{font-size:12px;color:var(--text-muted);font-style:italic;margin-bottom:8px;line-height:1.6}
.review-author{font-size:12px;font-weight:700;color:var(--text)}
.review-location{font-size:11px;color:var(--text-muted)}

/* PAYMENT */
.payment-section{background:var(--bg-card);padding:16px;margin-bottom:8px}
.payment-section h3{font-size:13px;font-weight:700;color:var(--text-muted);margin-bottom:10px;text-align:center}
.payment-logos{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;align-items:center}
.payment-item{background:var(--bg-dark);border:1px solid var(--border);border-radius:6px;padding:6px 14px;font-size:12px;font-weight:700;color:var(--text-muted)}

/* FOOTER */
footer{background:#061a10;padding:32px 16px 16px;border-top:2px solid var(--border)}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:24px;margin-bottom:24px}
.footer-brand .logo{font-size:22px;margin-bottom:10px;display:inline-block}
.footer-brand p{font-size:12px;color:var(--text-muted);line-height:1.7;margin-bottom:12px}
.footer-social{display:flex;gap:8px}
.social-btn{width:32px;height:32px;border-radius:50%;background:var(--bg-card);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:14px;color:var(--text-muted);transition:all .2s}
.social-btn:hover{background:var(--accent);color:#061a10;border-color:var(--accent)}
.footer-col h4{font-size:13px;font-weight:700;color:var(--accent);margin-bottom:12px;border-bottom:1px solid var(--border);padding-bottom:8px}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:8px}
.footer-col ul li a{font-size:12px;color:var(--text-muted);transition:color .2s}
.footer-col ul li a:hover{color:var(--accent)}
.footer-bottom{border-top:1px solid var(--border);padding-top:16px;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:10px}
.footer-bottom p{font-size:11px;color:var(--text-muted)}
.footer-cert{display:flex;gap:8px;align-items:center}
.cert-badge{background:var(--bg-card);border:1px solid var(--border);border-radius:4px;padding:4px 10px;font-size:10px;font-weight:700;color:var(--text-muted)}

/* MOBILE NAV DRAWER */
.mobile-drawer{display:none;position:fixed;top:0;left:-100%;width:260px;height:100%;background:#061a10;z-index:9999;padding:20px 0;box-shadow:4px 0 20px rgba(0,0,0,.5);transition:left .3s;flex-direction:column}
.mobile-drawer.open{left:0}
.drawer-header{display:flex;justify-content:space-between;align-items:center;padding:0 16px 16px;border-bottom:1px solid var(--border)}
.drawer-close{background:none;border:none;color:var(--text);font-size:22px;cursor:pointer}
.drawer-links{display:flex;flex-direction:column;padding:16px 0}
.drawer-links a{padding:12px 20px;font-size:14px;font-weight:600;color:var(--text-muted);border-bottom:1px solid var(--border);transition:all .2s}
.drawer-links a:hover,.drawer-links a.active{color:var(--accent);background:rgba(240,165,0,.05)}
.drawer-auth{display:flex;flex-direction:column;gap:10px;padding:16px 20px}
.overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:9998}
.overlay.open{display:block}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .about-grid{grid-template-columns:1fr}
}
@media(max-width:640px){
  .nav-links{display:none}
  .nav-toggle{display:flex}
  .mobile-drawer{display:flex}
  .hero-img{min-width:120px}
  .hero-img img{height:160px}
  .hero-content h1{font-size:20px}
  .footer-grid{grid-template-columns:1fr}
  .live-grid{grid-template-columns:repeat(2,1fr)}
  .promo-grid{grid-template-columns:1fr}
  .stats-bar{gap:16px}
  .stat-num{font-size:15px}
}
@media(max-width:400px){
  .game-grid{grid-template-columns:repeat(2,1fr)}
}
.live-badge::before img{width:100%;height:100%;object-fit:cover;object-position:center}
.social-btn img{width:100%;height:100%;object-fit:cover;object-position:center}