:root{
  --bg0:#050A14;
  --bg1:#07122A;
  --ink:#F5F8FF;
  --muted:rgba(245,248,255,.85);
  --line:rgba(255,255,255,.14);
  --blue:#1FB6FF;
  --blue2:#009DFF;
  --radius:28px;
  --shadow:0 30px 90px rgba(0,0,0,.65);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1200px 700px at 50% 30%, rgba(31,182,255,.18), transparent 60%),
    linear-gradient(160deg, var(--bg0), var(--bg1));
  overflow:hidden;
}

.wrap{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.shell{
  width:min(1180px,100%);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.topbar{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px 26px;
  border-bottom:1px solid var(--line);
}

.logo{
  font-weight:1000;
  font-size:34px;
  letter-spacing:-.6px;
}
.logo .bet{
  color:var(--blue);
}

.badge18{
  position:absolute;
  right:26px;
  width:56px;height:56px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid rgba(255,255,255,.28);
  font-weight:900;
}

.content{
  padding:46px 32px 36px;
  display:flex;
  justify-content:center;
}

.inner{
  width:min(900px,100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:22px;
}

h1{
  margin:0;
  font-size:clamp(44px,5.6vw,82px);
  line-height:1.05;
  letter-spacing:-1px;
}
h1 .hi{color:var(--blue)}
h1 .gold{color:#9AD7FF}

.sub{
  font-size:24px;
  line-height:1.5;
  color:var(--muted);
  max-width:56ch;
}

.points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  width:100%;
  max-width:720px;
}
.point{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.18);
  font-size:17px;
}

.ctaRow{
  width:100%;
  display:flex;
  justify-content:center;
}

.btn{
  width:100%;
  max-width:560px;
  padding:30px 24px;
  font-size:26px;
  font-weight:950;
  border-radius:22px;
  border:0;
  cursor:pointer;
  color:#04131f;
  background:linear-gradient(90deg,var(--blue),var(--blue2));
  box-shadow:0 26px 80px rgba(31,182,255,.35);
}

.micro{
  font-size:14px;
  color:rgba(245,248,255,.7);
}

.footer{
  padding:16px 26px 18px;
  border-top:1px solid var(--line);
  font-size:12px;
  color:rgba(245,248,255,.7);
  display:flex;
  justify-content:center;
}

@media(max-width:720px){
  .content{padding:28px 18px 22px}
  h1{font-size:clamp(36px,9vw,56px)}
  .sub{font-size:20px}
  .points{grid-template-columns:1fr}
  .btn{font-size:22px;padding:26px 20px}
}
