:root {
  --bg: #07090f;
  --panel: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f2f5ff;
  --muted: #9ba9c6;
  --accent: #4da3ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, #10204a 0%, transparent 35%),
    radial-gradient(circle at 80% 0%, #3f1f72 0%, transparent 30%), var(--bg);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  background: rgba(7, 9, 15, 0.7);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 20px;
}

nav a:hover {
  color: var(--text);
}

.hero {
  padding: 88px 0 38px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.hero p {
  margin: 16px auto 0;
  max-width: 740px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-ctas {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.glow-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.glow-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.glow-btn-primary {
  background: linear-gradient(120deg, #2563eb, #4da3ff 52%, #7c3aed);
  box-shadow: 0 0 18px rgba(77, 163, 255, 0.58), 0 0 42px rgba(77, 163, 255, 0.28);
}

.glow-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.35);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px auto;
}

.card,
.panel {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.card {
  padding: 18px;
}

.card h3 {
  margin: 0;
}

.card p {
  color: var(--muted);
  min-height: 48px;
}

.card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.panel {
  margin-top: 16px;
  padding: 22px;
}

.services-list {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.discord-cta-wrap {
  margin: 18px auto 54px;
  text-align: center;
}

.discord-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid rgba(88, 101, 242, 0.42);
  background: linear-gradient(120deg, #5865f2, #4752c4);
  box-shadow: 0 0 18px rgba(88, 101, 242, 0.55), 0 0 48px rgba(88, 101, 242, 0.26);
}

#statusText {
  color: var(--muted);
}
