:root{
  --bg:#07070c;
  --bg2:#0b0b10;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);
  --text:#f4f4f6;
  --muted: rgba(244,244,246,.72);
  --gold:#ffb000;
  --gold2:#ff6a00;
  --border: rgba(255,255,255,.12);
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 20px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  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(1200px 700px at 70% 0%, rgba(255,176,0,.14), transparent 55%),
              radial-gradient(900px 600px at 15% 20%, rgba(255,106,0,.11), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92vw); margin:0 auto}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,7,12,.58);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.2px;
}
.brand-badge{
  width:36px; height:36px; border-radius:12px;
  background: radial-gradient(100% 100% at 30% 30%, rgba(255,176,0,.9), rgba(255,106,0,.65));
  box-shadow: 0 10px 30px rgba(255,176,0,.16);
  position:relative;
}
.brand-badge:after{
  content:"";
  position:absolute; inset:7px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.28);
}

.nav{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
}
.pill{
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:999px;
  font-size:14px;
  color: rgba(244,244,246,.85);
}
.pill:hover{border-color: rgba(255,176,0,.35)}
.cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  cursor:pointer;
  border:none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight:800;
  letter-spacing:.2px;
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  position:relative;
  overflow:hidden;
}
.btn-primary{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#0b0b10;
  box-shadow: 0 18px 50px rgba(255,176,0,.25);
}
.btn-primary:hover{transform: translateY(-1px)}
.btn-primary:active{transform: translateY(0px)}
.btn-ghost{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color: var(--text);
}
.btn-ghost:hover{border-color: rgba(255,176,0,.35)}
.small{font-size:14px; padding:10px 12px}

.hero{
  padding: 56px 0 28px;
  position:relative;
}
.grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items:stretch;
}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
  .hero{padding-top:34px}
}

.h-title{
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -.7px;
}
.h-title span{
  background: linear-gradient(135deg, rgba(255,176,0,.95), rgba(255,106,0,.95));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.h-sub{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height:1.55;
  max-width: 58ch;
}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin: 18px 0 22px}
.badge{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-size: 13px;
  color: rgba(244,244,246,.86);
}

.card{
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card{
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute; inset:-60px;
  background: radial-gradient(closest-side, rgba(255,176,0,.16), transparent 60%);
  transform: translate3d(40px, -20px, 0);
  filter: blur(0px);
  pointer-events:none;
}
.hero-img{
  border-radius: 16px;
  width: 100%;
  height: auto;
  display:block;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.15);
}
.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.section{
  padding: 22px 0 56px;
}
.section h2{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing:-.2px;
}
.section p{
  margin:0;
  color: var(--muted);
  line-height:1.65;
}

.features{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px){
  .features{grid-template-columns:1fr}
}
.feature{
  padding: 16px;
}
.feature-title{
  font-weight:800; margin:0 0 6px;
}
.feature-text{margin:0; font-size:14px; color: rgba(244,244,246,.78); line-height:1.55}

.faq{
  margin-top: 16px;
  display:grid;
  gap: 10px;
}
details{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px 14px;
}
summary{
  cursor:pointer;
  font-weight:800;
}
details p{margin:10px 0 0; color: rgba(244,244,246,.78); font-size:14px; line-height:1.6}

.footer{
  padding: 26px 0 36px;
  border-top:1px solid rgba(255,255,255,.08);
  color: rgba(244,244,246,.65);
  font-size: 13px;
}

/* Casino particles (chips) */
.particles{position:absolute; inset:0; pointer-events:none; overflow:hidden}
.chip{
  position:absolute;
  width: 54px; height: 54px; border-radius: 50%;
  border: 10px solid rgba(255,176,0,.35);
  border-top-color: rgba(255,106,0,.55);
  border-left-color: rgba(255,106,0,.25);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  filter: drop-shadow(0 10px 30px rgba(255,176,0,.06));
  opacity:.9;
  animation: floaty 10s ease-in-out infinite;
}
.chip:after{
  content:"";
  position:absolute; inset:8px;
  border-radius: 50%;
  border: 2px dashed rgba(0,0,0,.35);
  opacity:.6;
}
@keyframes floaty{
  0%,100%{transform: translate3d(0,0,0) rotate(0deg)}
  50%{transform: translate3d(0,-18px,0) rotate(10deg)}
}
.glow{
  position:absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,176,0,.16), transparent 70%);
  filter: blur(2px);
  right:-140px; top:-120px;
  pointer-events:none;
}

/* Button ripple */
.ripple{
  position:absolute; border-radius:999px;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: rgba(255,255,255,.45);
  animation: ripple .65s ease-out forwards;
  mix-blend-mode: overlay;
}
@keyframes ripple{
  to{width: 520px; height: 520px; opacity:0}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .chip{animation:none}
  .btn{transition:none}
}
