:root {
  --ink: #e8e2d6;
  --muted: #a9a093;
  --deep: #0b1218;
  --panel: rgba(12, 22, 30, 0.72);
  --gold: #c6a35a;
  --gold-dim: #8a7038;
  --line: rgba(198, 163, 90, 0.28);
  --glow: rgba(120, 170, 210, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--ink);
  background: var(--deep);
  line-height: 1.55;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(70, 110, 150, 0.35), transparent 60%),
    radial-gradient(900px 600px at 10% 100%, rgba(90, 60, 30, 0.35), transparent 55%),
    linear-gradient(165deg, #0a1016 0%, #15202b 45%, #0d141c 100%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { filter: saturate(1) brightness(1); }
  to { filter: saturate(1.08) brightness(1.05); }
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 6vw;
}
.brand, .brand-hero {
  font-family: Cinzel, "Times New Roman", serif;
  letter-spacing: 0.06em;
  margin: 0;
}
.brand { font-size: 1.1rem; color: var(--gold); }
nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.95rem;
}
nav a:hover { color: var(--gold); }

.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 6vw 4rem;
  max-width: 52rem;
}
.brand-hero {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  color: var(--gold);
  line-height: 1.05;
  animation: rise 1.1s ease both;
}
.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
  animation: rise 1.3s ease both;
}
.cta { margin-top: 1.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; animation: rise 1.5s ease both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.15rem;
  text-decoration: none;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background 160ms ease, border-color 160ms ease;
}
.btn.primary { background: linear-gradient(180deg, var(--gold), var(--gold-dim)); color: #14110a; border-color: transparent; }
.btn.ghost:hover { border-color: var(--gold); }
.btn.primary:hover { filter: brightness(1.05); }

.section {
  padding: 2.5rem 6vw 1rem;
  max-width: 56rem;
}
.section h2 {
  font-family: Cinzel, serif;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.support, .muted { color: var(--muted); }
.server-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}
.server {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  backdrop-filter: blur(6px);
}
.server strong { font-family: Cinzel, serif; color: var(--ink); }
.server .meta { color: var(--muted); font-size: 0.92rem; grid-column: 1 / -1; }
.server .players { color: var(--gold); align-self: center; }

.legal { padding-bottom: 4rem; }
footer {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 6vw 2rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .top { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  nav a { margin-left: 0; margin-right: 1rem; }
  footer { flex-direction: column; gap: 0.35rem; }
}
