:root{
    --bg:#0b1017;
    --ink:#ffffff;
    --muted:#8b96a5;
    --card:#1c232c;
    --card-hover:#252d38;
    --verified:#3b9dff;
    --live:#1d7a45;
    --live-dot:#39d97a;
  }
  *{box-sizing:border-box;margin:0;padding:0}
  html{background:var(--bg)}
  body{
    min-height:100svh;
    font-family:ui-sans-serif,-apple-system,"Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
    background:var(--bg);
    color:var(--ink);
    -webkit-font-smoothing:antialiased;
  }

  .page{
    max-width:460px;
    margin:0 auto;
    min-height:100svh;
    display:flex;
    flex-direction:column;
  }

  /* ---------- banner ---------- */
  .banner{
    position:relative;
    width:100%;
    aspect-ratio:16/11;
    overflow:hidden;
  }
  .banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 42%;
    display:block;
  }
  .banner::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height:48%;
    background:linear-gradient(to bottom, rgba(11,16,23,0) 0%, rgba(11,16,23,.75) 55%, var(--bg) 100%);
    pointer-events:none;
  }

  /* ---------- identity ---------- */
  .content{
    flex:1;
    padding:0 22px calc(30px + env(safe-area-inset-bottom));
    text-align:center;
    margin-top:-34px;
    position:relative;
    z-index:1;
  }

  .name{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:1.85rem;
    font-weight:700;
    letter-spacing:-.01em;
  }
  .name svg{flex:none}

  .live{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:14px;
    padding:8px 16px;
    border-radius:999px;
    background:var(--live);
    font-size:.86rem;
    font-weight:600;
  }
  .dot{
    width:8px;height:8px;
    border-radius:50%;
    background:var(--live-dot);
    box-shadow:0 0 0 0 rgba(57,217,122,.65);
    animation:pulse 2s infinite;
  }
  @keyframes pulse{
    70%{box-shadow:0 0 0 8px rgba(57,217,122,0)}
    100%{box-shadow:0 0 0 0 rgba(57,217,122,0)}
  }

  /* ---------- link buttons ---------- */
  .links{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .link{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:11px;
    width:100%;
    padding:17px 18px;
    border:0;
    cursor:pointer;
    font-family:inherit;
    font-size:1.02rem;
    font-weight:600;
    border-radius:14px;
    background:#fff;
    color:#11161d;
    text-decoration:none;
    transition:transform .15s ease, background .15s ease;
  }
  .link:hover{transform:translateY(-2px);background:#f1f3f6}

  /* secondary link - kept darker so the main CTA still leads the eye */
  .link.alt{
    background:var(--card);
    color:var(--ink);
    border:1px solid rgba(255,255,255,.12);
  }
  .link.alt:hover{background:var(--card-hover)}

  .link:active{transform:translateY(0)}
  .link:focus-visible{outline:3px solid var(--verified);outline-offset:3px}
  .link .ico{flex:none;display:grid;place-items:center}

  .foot{
    margin-top:26px;
    font-size:.76rem;
    color:var(--muted);
  }

  /* ---------- 18+ gate ---------- */
  .gate{
    position:fixed;
    top:0; right:0; bottom:0; left:0;
    z-index:50;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:22px;
    background:rgba(4,7,11,.86);
    -webkit-backdrop-filter:blur(14px);
    backdrop-filter:blur(14px);
    animation:fade .2s ease both;
    overflow-y:auto;
  }
  .gate[hidden]{display:none !important}
  @keyframes fade{from{opacity:0}to{opacity:1}}

  .gate-box{
    width:100%;
    max-width:400px;
    margin:auto;
    background:var(--card);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    padding:32px 26px 24px;
    text-align:center;
    box-shadow:0 28px 70px rgba(0,0,0,.6);
    animation:pop .26s cubic-bezier(.2,.8,.3,1) both;
  }
  @keyframes pop{from{opacity:0;transform:translateY(12px) scale(.97)}to{opacity:1;transform:none}}

  .badge{
    display:inline-grid;
    place-items:center;
    width:58px;height:58px;
    margin-bottom:16px;
    border-radius:50%;
    background:#fff;
    color:#11161d;
    font-weight:800;
    font-size:1.02rem;
  }
  .gate-box h2{font-size:1.32rem;font-weight:700;margin-bottom:10px}
  .gate-box p{font-size:.93rem;line-height:1.6;color:var(--muted);margin-bottom:22px}

  .gate-actions{display:flex;flex-direction:column;gap:10px}
  .btn-yes,.btn-no{
    display:block;
    width:100%;
    padding:15px 18px;
    border-radius:12px;
    font-family:inherit;
    font-size:.98rem;
    font-weight:700;
    cursor:pointer;
    text-decoration:none;
    border:0;
    transition:transform .15s ease, background .15s ease;
  }
  .btn-yes{background:#fff;color:#11161d}
  .btn-yes:hover{transform:translateY(-2px);background:#f1f3f6}
  .btn-no{background:transparent;color:var(--muted);border:1px solid rgba(255,255,255,.16);font-weight:600}
  .btn-no:hover{color:var(--ink);border-color:rgba(255,255,255,.34)}
  .btn-yes:focus-visible,.btn-no:focus-visible{outline:3px solid var(--verified);outline-offset:3px}

  .fineprint{margin-top:16px;font-size:.72rem;line-height:1.5;color:#66707d}

  @media (prefers-reduced-motion:reduce){
    .dot,.gate,.gate-box{animation:none}
    .link,.btn-yes,.btn-no{transition:none}
  }

  @media (min-width:520px){
    .page{
      min-height:auto;
      margin:34px auto;
      border-radius:20px;
      overflow:hidden;
      box-shadow:0 24px 70px rgba(0,0,0,.5);
      background:var(--bg);
    }
  }
