:root{
  --bg:#050506;
  --bg2:#0a0a0d;
  --ink: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.62);

  --gold1:#e2c58b;
  --gold2:#b88a3c;
  --gold3:#6f4a16;

  --red:#ff2d2d;

  --glass: rgba(255,255,255,.045);
  --glass2: rgba(255,255,255,.07);
  --line: rgba(255,255,255,.10);

  --ring: rgba(226,197,139,.25);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--ink);
  background:
    radial-gradient(900px 700px at 50% 46%, rgba(226,197,139,.11), transparent 62%),
    radial-gradient(760px 520px at 56% 52%, rgba(255,45,45,.08), transparent 58%),
    radial-gradient(900px 600px at 35% 58%, rgba(255,255,255,.05), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

/* Elite grain + vignette */
body:before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 900px at 50% 40%, transparent 55%, rgba(0,0,0,.65) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.35;
}

/* Subtle moving red slash light */
body:after{
  content:"";
  position:fixed; inset:-20%;
  pointer-events:none;
  background:
    linear-gradient(115deg, transparent 45%, rgba(255,45,45,.20) 50%, transparent 55%);
  filter: blur(18px);
  opacity:.35;
  transform: translateX(-20%) translateY(10%) rotate(-2deg);
  animation: sweep 7.5s ease-in-out infinite;
}
@keyframes sweep{
  0%{ transform: translateX(-28%) translateY(16%) rotate(-2deg); opacity:.22; }
  45%{ transform: translateX(6%) translateY(-8%) rotate(-2deg); opacity:.36; }
  100%{ transform: translateX(-28%) translateY(16%) rotate(-2deg); opacity:.22; }
}

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

.card{
  width:min(980px, 100%);
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02) 45%, rgba(0,0,0,.18)),
    rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:
    0 30px 90px rgba(0,0,0,.75),
    inset 0 1px 0 rgba(255,255,255,.06);
  overflow:hidden;
  position:relative;
}

/* Gold edge shimmer */
.card:before{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(135deg, rgba(226,197,139,.35), transparent 35%, transparent 65%, rgba(184,138,60,.25));
  opacity:.28;
  pointer-events:none;
}
.card:after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 35% 25%, rgba(226,197,139,.10), transparent 60%);
  pointer-events:none;
}

.inner{
  position:relative;
  padding:30px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:26px;
}
@media (max-width: 860px){
  .inner{ grid-template-columns: 1fr; }
}

.brand{
  display:flex;
  flex-direction:column;
  gap:14px;
  justify-content:center;
}

.logo{
  width:min(440px, 100%);
  height:auto;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.75));
  transform: translateZ(0);
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-size:12px;
  letter-spacing:.38em;
  text-transform:uppercase;
  color: rgba(255,255,255,.62);
}
.kicker .bar{
  width:46px; height:1px;
  background: linear-gradient(90deg, transparent, rgba(226,197,139,.7), transparent);
}
.h1{
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing:.3px;
  margin:0;
}
.p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
  max-width: 58ch;
}

.side{
  background: rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.btn{
  width:100%;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(226,197,139,.36);
  background:
    linear-gradient(180deg, rgba(226,197,139,.18), rgba(0,0,0,.22)),
    radial-gradient(120px 60px at 50% 0%, rgba(255,255,255,.14), transparent 60%);
  color: var(--ink);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  box-shadow: 0 12px 34px rgba(0,0,0,.55);
  transition: transform .10s ease, border-color .12s ease, box-shadow .12s ease, filter .12s ease;
  cursor:pointer;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(226,197,139,.58);
  box-shadow: 0 16px 44px rgba(0,0,0,.62);
  filter: brightness(1.05);
}
.btn:active{ transform: translateY(0); }

.hr{
  height:1px;
  background: rgba(255,255,255,.10);
  margin:14px 0;
}

.field{ display:flex; flex-direction:column; gap:8px; margin-top:10px; }
label{
  font-size:12px;
  color: rgba(255,255,255,.64);
  letter-spacing:.14em;
  text-transform:uppercase;
}

input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  color:var(--ink);
  outline:none;
}
input:focus{
  border-color: rgba(226,197,139,.62);
  box-shadow: 0 0 0 4px var(--ring);
}

.small{
  font-size:12px;
  color:var(--muted);
}

.footer-note{
  display:flex; gap:10px; align-items:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.70);
  font-size:12px;
  line-height:1.35;
}
.pip{
  width:8px; height:8px; border-radius:50%;
  background: linear-gradient(180deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 18px rgba(226,197,139,.35);
}

.denied{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:38px 22px 34px;
  gap:14px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,45,45,.28);
  background: rgba(255,45,45,.08);
  color: rgba(255,255,255,.92);
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255,45,45,.55);
}
.badge.gold{
  border-color: rgba(226,197,139,.25);
  background: rgba(226,197,139,.08);
}
.back{
  max-width:280px;
}
