
:root{
  --bg:#0b0f12;
  --text:#f7f3e8;
  --muted:rgba(247,243,232,.78);
  --stroke:rgba(255,255,255,.14);
  --card:rgba(0,0,0,.22);
  --gold:#ffb000;
  --orange:#ff7a1a;
  --shadow:0 18px 45px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,"Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 450px at 20% 10%, rgba(255,176,0,.22), transparent 55%),
    radial-gradient(800px 500px at 80% 0%, rgba(255,122,26,.18), transparent 60%),
    radial-gradient(850px 520px at 70% 85%, rgba(255,176,0,.16), transparent 55%),
    linear-gradient(180deg, #0b0f12 0%, #0b0f12 100%);
  min-height:100vh;
}
.container{width:min(1120px, calc(100% - 48px)); margin:0 auto;}
a{color:inherit}

.disclaimer-bar{
  background:rgba(0,0,0,.55);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.disclaimer-bar--bottom{border-top:1px solid rgba(255,255,255,.10);border-bottom:none;}
.disclaimer-inner{
  width:min(1120px, calc(100% - 48px));
  margin:0 auto;
  padding:10px 0;
  display:flex;
  gap:10px;
  align-items:center;
  font-size:13px;
  color:rgba(255,255,255,.88);
}
.badge18{
  width:34px;height:34px;border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,176,0,.18);
  display:grid;place-items:center;
  font-weight:900;
}

.site-header{
  position:sticky;top:0;z-index:10;
  background:rgba(6,8,10,.55);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;}
.brand-mark{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(255,176,0,.95), rgba(255,122,26,.95));
  color:#1b1200;font-size:20px;
  box-shadow:0 10px 25px rgba(255,122,26,.18);
}
.brand-name{font-weight:900}
.nav{display:flex;gap:18px;align-items:center}
.nav a{
  text-decoration:none;
  padding:10px 14px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.12);
  font-weight:800;font-size:14px;
}
.nav a:hover{background:rgba(255,255,255,.06)}

.hero{padding:34px 0 12px;}
.hero-cover{
  border-radius:26px;overflow:hidden;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.22);
  box-shadow:var(--shadow);
  position:relative;
  min-height:52vh;
}
.hero-cover img{width:100%;height:100%;object-fit:cover;display:block;}
.cover-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.08) 70%, rgba(0,0,0,0) 100%),
    radial-gradient(700px 420px at 15% 25%, rgba(255,176,0,.25), transparent 60%);
}
.hero-content{position:absolute;inset:0;display:flex;align-items:flex-end;padding:26px;}
.hero-card{max-width:720px;}
.kicker{
  display:inline-flex;gap:10px;align-items:center;
  padding:10px 14px;border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.28);
  font-weight:900;font-size:13px;
}
.h1{margin:14px 0 10px;font-size:clamp(34px,4.8vw,58px);line-height:1.03;letter-spacing:-.6px;}
.lead{margin:0 0 18px;color:rgba(255,255,255,.88);font-size:18px;line-height:1.5;}
.pills{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:18px;}
.pill{padding:10px 14px;border-radius:999px;border:1px solid rgba(255,255,255,.14);background:rgba(0,0,0,.20);font-weight:900;font-size:14px;color:rgba(255,255,255,.86);}
.ctas{display:flex;flex-wrap:wrap;gap:12px;}
.btn{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.20);
  color:#fff;padding:14px 16px;border-radius:14px;
  font-weight:1000;text-decoration:none;display:inline-flex;align-items:center;gap:10px;
}
.btn-primary{background:linear-gradient(135deg, rgba(255,176,0,.98), rgba(255,122,26,.95));color:#1b1200;border:none;}
.btn:hover{transform:translateY(-1px);}

.section{padding:16px 0 32px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.card{
  border-radius:22px;border:1px solid var(--stroke);
  background:rgba(0,0,0,.20);
  box-shadow:0 18px 45px rgba(0,0,0,.25);
  padding:18px;
}
.card h3{margin:0 0 8px;}
.card p{margin:0;color:var(--muted);line-height:1.55;}

.demo-wrap{
  border-radius:26px;border:1px solid var(--stroke);
  background:rgba(0,0,0,.20);
  box-shadow:var(--shadow);
  padding:22px;
}
.demo-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:14px;}
.demo-head h2{margin:0;font-size:28px;}
.demo-head p{margin:8px 0 0;color:var(--muted);line-height:1.55;}
.demo-badge{display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border-radius:999px;border:1px solid rgba(255,255,255,.16);background:rgba(0,0,0,.22);font-weight:1000;white-space:nowrap;}
.reels{margin-top:12px;display:flex;justify-content:center;gap:16px;padding:18px;border-radius:22px;border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.16);}
.reel{width:120px;height:140px;border-radius:22px;border:1px solid rgba(255,255,255,.14);background:rgba(0,0,0,.22);display:grid;place-items:center;font-size:58px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.35);}
.demo-controls{margin-top:14px;display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap;}
.spin-btn{cursor:pointer;border:none;padding:14px 18px;border-radius:16px;font-weight:1100;background:linear-gradient(135deg, rgba(255,176,0,.98), rgba(255,122,26,.95));color:#1b1200;box-shadow:0 14px 28px rgba(255,122,26,.18);}
.spin-btn:disabled{opacity:.55;cursor:not-allowed;box-shadow:none;}
.coins{font-weight:1000;color:rgba(255,255,255,.9);}
.demo-note{margin-top:10px;text-align:center;font-size:13px;color:rgba(255,255,255,.72);}

.footer{background:#140c00;padding:44px 0 34px;border-top:1px solid rgba(255,255,255,.12);}
.footer-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px;align-items:start;}
.footer-links{display:flex;flex-direction:column;gap:14px;font-size:26px;}
.footer-links a{text-decoration:none;opacity:.92;}
.footer-links a:hover{opacity:1;text-decoration:underline;}
.footer-support{justify-self:end;width:100%;max-width:520px;}
.support-title{font-weight:1000;margin-bottom:12px;opacity:.92;}
.support-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.support-pill{display:flex;align-items:center;justify-content:center;gap:12px;padding:16px;border-radius:16px;border:1px solid rgba(255,255,255,.18);background:rgba(0,0,0,.18);text-decoration:none;font-weight:1000;}
.support-pill:hover{background:rgba(255,255,255,.06);}
.support-pill .dot{width:14px;height:14px;border-radius:999px;background:var(--orange);box-shadow:0 0 0 4px rgba(255,122,26,.18);}
.footer-meta{margin-top:22px;font-size:14px;line-height:1.6;opacity:.92;}
.footer-meta a{color:#ffd27a;}

.page{padding:26px 0;}
.page h1{margin:0 0 10px;font-size:38px;}
.page p,.page li{color:rgba(255,255,255,.82);line-height:1.7;}
.page .box{margin-top:14px;border-radius:22px;border:1px solid var(--stroke);background:rgba(0,0,0,.20);padding:18px;}

@media (max-width:980px){
  .grid-3{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-support{justify-self:start;}
  .footer-links{font-size:22px;}
  .reel{width:104px;height:128px;font-size:52px;}
  .hero-cover{min-height:56vh;}
}
