:root{
  --bg0:#020617;
  --text:#e5e7eb;
  --muted:rgba(229,231,235,.75);
  --pill:rgba(255,255,255,.08);
  --shadow: 0 12px 34px rgba(0,0,0,.45);
  --radius: 18px;
  --accent:#60a5fa;
  --accent2:#22c55e;
}

*{ box-sizing:border-box; }

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin:0;
  min-height:100vh;
  display:grid;
  place-items:center;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(96,165,250,.18), transparent 60%),
              radial-gradient(1000px 500px at 80% 90%, rgba(34,197,94,.12), transparent 60%),
              var(--bg0);
  color:var(--text);
}

/* Main card */
.card{
  width:min(560px, 92vw);
  padding:26px;
  border-radius:var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
}

.card-inner{
  border-radius: calc(var(--radius) - 6px);
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(255,255,255,.06);
  padding: 22px;
  text-align:center;
}

h2{
  margin:0;
  font-size:22px;
  letter-spacing:.2px;
}

.sub{
  margin-top:8px;
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
}

.btn{
  margin-top:18px;
  padding:12px 18px;
  font-size:16px;
  border-radius:12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(96,165,250,.20);
  color: var(--text);
  cursor:pointer;
  font-weight:700;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(96,165,250,.28);
  border-color: rgba(255,255,255,.16);
}

#champ{
  margin-top:18px;
  font-size:30px;
  font-weight:900;
  letter-spacing:.3px;
}

.meta{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}

.pill{
  display:inline-block;
  padding:4px 10px;
  margin: 2px 4px;
  border-radius:999px;
  background: var(--pill);
  border: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
}

/* Bottom-right lane nav */
.lane-nav{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display:flex;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(2,6,23,.72);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
  z-index: 9999;
}

.lane-nav a{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  outline: 2px solid transparent;
  transition: transform .12s ease, background .12s ease, outline-color .12s ease;
}

.lane-nav a:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.lane-nav a.active{
  background: rgba(96,165,250,.18);
  outline-color: rgba(96,165,250,.45);
}

.lane-nav a:focus-visible{
  outline-color: rgba(255,255,255,.55);
}

.lane-nav img{
  width:22px;
  height:22px;
  display:block;
}
