:root {
  --bg: #0d1017;
  --bg-2: #141925;
  --card: #1a2030;
  --line: #2c3450;
  --text: #eef2fb;
  --muted: #97a1bd;
  --blue: #4c8bf5;
  --blurple: #5865f2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: #79a9ff; }
img { max-width: 100%; display: block; }

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(13, 16, 23, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; }
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blurple);
  color: #fff;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
.btn-discord:hover { background: #4752c4; color: #fff; }
.discord-icon { display: block; filter: brightness(0) invert(1); }

/* empty main */
.empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 28px;
}
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.logo-wrap img {
  width: 180px;
  height: 180px;
  border-radius: 36px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  animation: float 6s ease-in-out infinite;
}
.tagline {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: lowercase;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 22px 28px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
footer p { margin: 0; }

@media (max-width: 600px) {
  .nav { padding: 12px 18px; }
  .logo-wrap img { width: 130px; height: 130px; border-radius: 28px; }
}
