/* neocult — Gaming Network. Voll self-contained, kein externer Webfont, kein Inline.
   Strikt-CSP-konform (default-src 'self'). */
:root {
  --bg: #0a0c12;
  --bg2: #0e1119;
  --card: #141826;
  --card-2: #181d2e;
  --border: #232a3d;
  --text: #e7ecf5;
  --muted: #8b95ad;
  --accent: #00e5a8;
  --accent-2: #7c5cff;
  --danger: #ff5d6c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 70% -10%, #16203a 0%, var(--bg) 55%) fixed, var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

.grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 92, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 168, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(900px 600px at 60% 0%, #000 30%, transparent 80%);
  z-index: 0;
}

.glow {
  position: fixed;
  top: -160px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0, 229, 168, 0.16), transparent 60%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px 56px;
}

/* Hero */
.hero { text-align: center; margin-bottom: 44px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(20, 24, 38, 0.6);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.logo {
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo .accent {
  color: var(--accent);
  text-shadow: 0 0 26px rgba(0, 229, 168, 0.35);
}

.tagline {
  max-width: 540px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Cards */
.card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.8);
}

.card-head, .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.card h2, .section-head h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.community p { color: var(--muted); margin-bottom: 22px; }
.community strong { color: var(--text); }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 650;
  color: #04130f;
  background: linear-gradient(135deg, var(--accent), #34f0c0);
  padding: 13px 22px;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 30px -10px rgba(0, 229, 168, 0.5);
}

.cta:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(0, 229, 168, 0.6); }
.cta-arrow { transition: transform 0.15s ease; }
.cta:hover .cta-arrow { transform: translateX(4px); }

/* Badges */
.badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.badge-live { color: var(--accent); background: rgba(0, 229, 168, 0.12); border: 1px solid rgba(0, 229, 168, 0.3); }
.badge-soon { color: var(--muted); background: rgba(139, 149, 173, 0.1); border: 1px solid var(--border); }

/* Server section */
.servers { margin-top: 8px; }
.section-head .muted { color: var(--muted); font-size: 0.9rem; }

.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.server {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}

.server-soon {
  opacity: 0.55;
  filter: grayscale(0.7);
}

.server-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.server-name { font-size: 1.1rem; font-weight: 700; }
.server-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }

.server-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--muted);
}

.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 8px rgba(255, 93, 108, 0.6);
}

/* Footer */
.footer {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .wrap { padding: 48px 18px 40px; }
  .card { padding: 24px; }
}
