:root {
  --bg: #0b0c10;
  --surface: #15161d;
  --surface-2: #1f212c;
  --muted: #9aa0b0;
  --gold: #ffd700;
  --gold-soft: #ffe066;
  --cream: #f6f1d5;
  --accent: #8b5cf6;
  --eminent: #e11d48;
  --elite: #38bdf8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.55;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 22px; }

.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,12,16,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #252733;
  padding: 14px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 800; color: var(--cream); text-decoration: none; }
.logo-img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; image-rendering: auto; }
.logo .gold { color: var(--gold); }
.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-link { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color .2s; }
.nav-link:hover { color: var(--gold); }
.discord { color: var(--gold); }

.hero {
  position: relative; min-height: 92vh; padding: 140px 0 100px; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.16), transparent 55%),
    linear-gradient(180deg, #11131a 0%, var(--bg) 100%);
  text-align: center; display: flex; align-items: center; justify-content: center;
}
.orb {
  position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.14), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.eyebrow { letter-spacing: 3px; text-transform: uppercase; font-size: 0.8rem; color: var(--gold); margin-bottom: 12px; font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero h1 { font-size: 4.5rem; margin: 0 0 14px; font-weight: 900; text-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.hero h1 .gold { background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--cream)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { font-size: 1.2rem; color: rgba(246,243,227,0.85); max-width: 560px; margin: 0 auto 36px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }

.ipbar {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid #2d2f3b;
  border-radius: 12px; padding: 12px 18px; margin: 8px auto;
  font-family: 'SF Mono', ui-monospace, monospace;
}
.ipbar.bedrock { margin-bottom: 32px; }
.ip-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.ipbar code { color: var(--gold); font-size: 1rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 10px; border: none; cursor: pointer;
  font-weight: 700; font-size: 0.98rem; text-decoration: none;
  background: var(--gold); color: #111; transition: transform .15s, box-shadow .15s, filter .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,0.25); }
.btn-sm { padding: 8px 14px; font-size: 0.85rem; }
.btn-ghost { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-ghost:hover { background: var(--gold); color: #111; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }

.section { padding: 80px 0; }
.section-dark { background: var(--surface); border-top: 1px solid #22242e; border-bottom: 1px solid #22242e; }
.section-title { font-size: 2rem; text-align: center; margin: 0 0 8px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }
.section-subtitle { text-align: center; color: var(--muted); margin-bottom: 40px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.server-card {
  background: var(--surface-2); border: 1px solid #2a2d3a; border-radius: 16px;
  padding: 28px; text-align: center; transition: transform .18s, border-color .18s;
}
.server-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.server-icon {
  width: 72px; height: 72px; border-radius: 16px; margin: 0 auto 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2a1d0a, #4a3510); border: 1px solid rgba(255,215,0,0.2);
}
.server-icon img { width: 48px; height: 48px; image-rendering: pixelated; }
.server-card h3 { margin: 0 0 8px; }
.server-card p { color: var(--muted); margin: 0; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.feature { background: var(--surface-2); border-radius: 14px; padding: 24px; border: 1px solid #2a2d3a; }
.feature h4 { color: var(--gold); margin: 0 0 8px; }
.feature p { color: var(--muted); margin: 0; }

.cta { padding: 90px 0; text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.10), transparent 55%); }
.cta h2 { font-size: 2.2rem; margin: 0 0 10px; }
.cta p { color: var(--muted); margin-bottom: 24px; }

.vote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.vote-card {
  display: block; background: var(--surface-2); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
  padding: 26px; text-align: center; text-decoration: none; color: var(--cream);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.vote-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 12px 30px rgba(255,215,0,0.1); }
.vote-card h3 { margin: 0 0 8px; color: var(--gold); }
.vote-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.site-footer { background: #08090d; text-align: center; padding: 40px 0; border-top: 1px solid #1c1e26; color: var(--muted); }
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer p { margin: 6px 0; }

@media (max-width: 640px) {
  .hero h1 { font-size: 2.6rem; }
  .ipbar { flex-direction: column; gap: 6px; padding: 10px 14px; }
  .ipbar code { font-size: 0.9rem; }
}
