:root{
  --bg:#05070d;
  --bg2:#080b12;
  --text:#f5f7fb;
  --muted:#9aa4b2;
  --line:rgba(255,255,255,.08);
  --blue:#42b3ff;
  --blue-strong:rgba(66,179,255,.40);
  --glow:0 0 28px rgba(66,179,255,.20);
  --max:1200px;
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
}

body{
  min-height:100vh;
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(66,179,255,.12), transparent 28%),
    radial-gradient(circle at bottom, rgba(66,179,255,.08), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a{
  color:inherit;
  text-decoration:none;
}

.page-shell{
  width:min(var(--max), calc(100% - 20px));
  margin:0 auto;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  padding:14px 0 20px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  margin-bottom:10px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#dff3ff;
}

.brand-badge{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, rgba(66,179,255,.20), rgba(66,179,255,.08));
  border:1px solid rgba(66,179,255,.28);
  box-shadow:var(--glow);
  font-size:15px;
}

.brand-text{
  font-size:16px;
}

.landing{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.eyebrow{
  margin:8px 0 10px;
  font-size:11px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:#9fd8ff;
}

h1{
  margin:0;
  font-size:clamp(34px, 7vw, 72px);
  line-height:.95;
  letter-spacing:-.04em;
}

.subline{
  margin:14px 0 18px;
  color:var(--muted);
  font-size:clamp(14px, 2.5vw, 19px);
}

.map-wrap{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.wheel-frame{
  position:relative;
  width:min(96vw, 760px);
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--glow);
  background:#0a0f18;
}

.wheel-image{
  display:block;
  width:100%;
  height:auto;
}

.tap-zone{
  position:absolute;
  z-index:5;
  background:rgba(66,179,255,0);
  -webkit-tap-highlight-color: rgba(66,179,255,.25);
}

.tap-zone:active,
.tap-zone:hover{
  background:rgba(66,179,255,.14);
  outline:1px solid rgba(150,220,255,.45);
}

/* tuned for the current uploaded wheel image */

.zone-flight{
  left:15%;
  top:17%;
  width:23%;
  height:20%;
  clip-path:polygon(42% 0%, 100% 18%, 83% 100%, 0% 77%, 0% 24%);
}

.zone-warrior{
  right:15%;
  top:16%;
  width:23%;
  height:20%;
  clip-path:polygon(0% 18%, 58% 0%, 100% 24%, 100% 77%, 17% 100%);
}

.zone-builder{
  right:13%;
  top:36%;
  width:20%;
  height:19%;
  clip-path:polygon(0% 8%, 100% 0%, 100% 86%, 18% 100%, 0% 55%);
}

.zone-tech{
  right:23%;
  top:57%;
  width:18%;
  height:14%;
  clip-path:polygon(15% 0%, 100% 15%, 82% 100%, 0% 86%);
}

.zone-strength{
  left:13%;
  top:36%;
  width:20%;
  height:19%;
  clip-path:polygon(0% 0%, 100% 8%, 100% 55%, 82% 100%, 0% 86%);
}

.zone-creator{
  left:37%;
  top:59%;
  width:26%;
  height:12%;
  clip-path:polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.wheel-labels{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  max-width:900px;
}

.map-chip{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow:var(--glow);
  font-weight:700;
  letter-spacing:.02em;
}

.map-chip:hover,
.map-chip:active{
  border-color:var(--blue-strong);
  background:linear-gradient(180deg, rgba(66,179,255,.14), rgba(255,255,255,.03));
}

.footer{
  text-align:center;
  color:var(--muted);
  margin-top:16px;
  font-size:14px;
}

@media (max-width:700px){
  .page-shell{
    width:min(100% - 10px, var(--max));
    padding-top:10px;
  }

  .brand-badge{
    width:34px;
    height:34px;
    font-size:14px;
  }

  .brand-text{
    font-size:15px;
  }

  .map-chip{
    padding:10px 14px;
    font-size:14px;
  }
}
