:root{
  --bg:#0b0f14;
  --panel:#0f1620;
  --panel2:#0c121b;
  --text:#e7eef7;
  --muted:#a8b3c2;
  --line:rgba(255,255,255,.08);
  --accent:#7c3aed;
  --accent2:#22c55e;
  --shadow: 0 14px 50px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(124,58,237,.22), transparent 60%),
    radial-gradient(900px 500px at 80% 30%, rgba(34,197,94,.14), transparent 60%),
    var(--bg);
}

a{color:inherit; text-decoration:none}
.container{max-width:1040px; margin:0 auto; padding:0 18px}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.65);
  border-bottom:1px solid var(--line);
}
.header__inner{
  height:64px; display:flex; align-items:center; justify-content:space-between;
}
.brand{
  font-weight:800;
  letter-spacing:.5px;
  padding:10px 12px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,197,94,.12));
  border:1px solid var(--line);
}

.nav{display:flex; gap:10px; align-items:center}
.nav__link{
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
}
.nav__link:hover{color:var(--text); border-color:var(--line); background:rgba(255,255,255,.03)}
.nav__link--active{color:var(--text); border-color:rgba(124,58,237,.35); background:rgba(124,58,237,.10)}

.hero{padding:26px 0 10px}
.hero__card{
  padding:22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  margin:0 0 10px;
  font-weight:600;
  letter-spacing:.2px;
}
.hero__title{font-size:44px; line-height:1.05; margin:0 0 8px}
.hero__subtitle{margin:0 0 16px; color:var(--muted); font-size:16px; max-width:65ch}

.ipbox{
  display:flex; gap:14px; align-items:stretch; justify-content:space-between;
  padding:14px;
  background: rgba(0,0,0,.18);
  border:1px solid var(--line);
  border-radius: 16px;
}
.ipbox__left{flex:1}
.ipbox__label{color:var(--muted); font-size:12px; letter-spacing:.2px}
.ipbox__value{font-size:22px; font-weight:800; margin-top:4px}
.ipbox__hint{color:var(--muted); font-size:13px; margin-top:4px}
.ipbox__right{display:flex; flex-direction:column; gap:10px; min-width:160px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16)}
.btn:active{transform: translateY(1px)}
.btn--primary{
  border-color: rgba(124,58,237,.40);
  background: linear-gradient(135deg, rgba(124,58,237,.35), rgba(34,197,94,.12));
}

.grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.grid--votes{grid-template-columns: repeat(2, 1fr)}

.tile{
  padding:14px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  transition: transform .08s ease, border-color .2s ease, background .2s ease;
}
.tile:hover{transform: translateY(-2px); background: rgba(255,255,255,.05); border-color: rgba(124,58,237,.32)}
.tile__title{font-weight:800; margin-bottom:6px}
.tile__desc{color:var(--muted); font-size:13px}

.section{padding:18px 0}
.section__title{margin:0 0 10px; font-size:18px}

.card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.list{color:var(--text); margin:0; padding-left:18px}
.bullets{margin:0; padding-left:18px; color:var(--text)}
.bullets li{margin:8px 0; color:var(--text)}
.muted{color:var(--muted)}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace}

.info{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.info__item{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.14);
}
.info__k{color:var(--muted); font-size:12px}
.info__v{font-weight:800; margin-top:6px}

.pagehead{padding:20px 0 6px}
.pagehead__title{margin:0 0 8px; font-size:34px}
.pagehead__sub{margin:0; color:var(--muted); max-width:70ch}

.table{
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}
.row{display:flex; border-bottom:1px solid var(--line); background:rgba(0,0,0,.10)}
.row:last-child{border-bottom:none}
.cell{flex:1; padding:12px 14px}
.divider{height:1px; background:var(--line); margin:18px 0}

.note{min-height:20px; margin:10px 0 0; color:var(--accent2); font-weight:700}

.footer{
  margin-top:30px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.footer__inner{
  padding:18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.footer__brand{font-weight:900}
.footer__small{color:var(--muted); font-size:13px}
.footer__right{display:flex; gap:10px}
.footer__link{color:var(--muted); padding:8px 10px; border-radius:12px}
.footer__link:hover{color:var(--text); background:rgba(255,255,255,.03)}

@media (max-width: 900px){
  .grid{grid-template-columns: repeat(2, 1fr)}
  .info{grid-template-columns: 1fr}
  .hero__title{font-size:36px}
}
@media (max-width: 520px){
  .ipbox{flex-direction:column}
  .ipbox__right{flex-direction:row; min-width:unset}
  .grid--votes{grid-template-columns: 1fr}
}


html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* More visible Discord button */
.btn--discord{
  border-color: rgba(124,58,237,.55);
  background: linear-gradient(135deg, rgba(124,58,237,.55), rgba(124,58,237,.18));
}

/* Make the Discord tile pop more */
.tile--discord{
  border-color: rgba(124,58,237,.45);
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(255,255,255,.03));
}
.tile--discord:hover{
  border-color: rgba(124,58,237,.70);
}