:root{
  --bg:#07080a;
  --card:#0c0f12;
  --card2:#0a0c0f;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.58);
  --muted2:rgba(255,255,255,.42);
  --line:rgba(255,255,255,.12);
  --line2:rgba(255,255,255,.08);
  --green:#7CFF00;
  --green2:#9BFF3B;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(520px 360px at 110px 35px, rgba(124,255,0,.18), transparent 60%),
    radial-gradient(800px 500px at 82% 20%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #050607, #090b0e 55%, #050607);
  overflow-x:hidden;
}

.wrap{
  min-height:100%;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:54px 22px 70px;
}

.shell{
  width:min(980px, 100%);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 16px;
  opacity:.95;
}
.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--green);
  box-shadow:
    0 0 0 4px rgba(124,255,0,.14),
    0 0 0 8px rgba(124,255,0,.07),
    0 0 18px rgba(124,255,0,.42);
  flex:0 0 auto;
}
.brand span{
  letter-spacing:.22em;
  font-size:12px;
  text-transform:uppercase;
  color:rgba(255,255,255,.68);
}

.card{
  position:relative;
  border:1px solid var(--line);
  border-radius:22px;
  padding:34px 34px 30px;
  background:
    radial-gradient(900px 500px at 15% 5%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: 0 30px 95px rgba(0,0,0,.72), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}

h1{
  margin:0;
  font-size:56px;
  line-height:1.03;
  font-weight:850;
  letter-spacing:-0.04em;
  text-wrap:balance;
}
.sub{
  margin:18px 0 18px;
  font-size:16px;
  line-height:1.7;
  color:var(--muted);
  max-width:70ch;
}
.sub p{margin:.55em 0}
strong{color:rgba(255,255,255,.92); font-weight:750}
.emph{color:var(--green); font-weight:800}
.muted{color:var(--muted2)}

.form{
  margin-top:18px;
  border-top:1px solid var(--line2);
  padding-top:18px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.label{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.45);
}

.input{
  width:100%;
  padding:16px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.33);
  color: var(--text);
  outline:none;
  transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;
}
.input::placeholder{color:rgba(255,255,255,.28)}
.input:focus{
  border-color:rgba(255,255,255,.28);
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}

.field.full{grid-column: 1 / -1}

.actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:14px;
}
.btn{
  appearance:none;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, #ffffff, #f0f0f0);
  color:#000;
  font-weight:800;
  letter-spacing:.02em;
  padding:16px 18px;
  border-radius:16px;
  width:100%;
  cursor:pointer;
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 22px 60px rgba(0,0,0,.62); filter:brightness(1.02)}
.btn:active{transform: translateY(0px)}

.note{
  margin-top:10px;
  font-size:12.5px;
  color:rgba(255,255,255,.42);
}

.err{
  margin-top:10px;
  font-size:13px;
  color: rgba(255,255,255,.82);
  background: rgba(124,255,0,.08);
  border: 1px solid rgba(124,255,0,.22);
  padding:10px 12px;
  border-radius:12px;
  display:none;
}
.err.show{display:block}

@media (max-width: 760px){
  .wrap{padding:34px 16px 54px}
  .card{padding:26px 18px 22px}
  h1{font-size:44px}
  .grid{grid-template-columns: 1fr}
  .field.full{grid-column:auto}
}


/* Region navigation */
.regions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 16px 0 18px;
}
.regions a{
  display:inline-block;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  color: rgba(255,255,255,.86);
  text-decoration:none;
  font-weight:700;
  letter-spacing:.01em;
  background: rgba(255,255,255,.03);
}
.regions a:hover{
  border-color: rgba(124,255,0,.55);
  color:#fff;
}

/* VIC region buttons (more buttons) */
.regions-vic a{
  padding:9px 11px;
  font-size: 0.95rem;
}

/* Fix concentric glow for green dot */
.brand-dot{
  width:10px;
  height:10px;
  background:#6CFF00;
  border-radius:50%;
  box-shadow: 0 0 0 4px rgba(108,255,0,0.15),
              0 0 0 8px rgba(108,255,0,0.08),
              0 0 20px rgba(108,255,0,0.6);
}
