/* Minimal, responsive, and clean UI */
:root {
  --bg: #0f1221;
  --card: #151b2b;
  --muted: #99a3b3;
  --text: #e7ecf3;
  --brand: #5865F2; /* Discord blurple */
  --accent: #00d4ff;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(88,101,242,.25), transparent 60%),
              radial-gradient(900px 500px at 120% 0%, rgba(0,212,255,.15), transparent 60%),
              var(--bg);
}
.container {
  width: 100%;
  max-width: 1040px;
  padding: 0 16px;
  margin: 0 auto;
}
.site-header {
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: sticky; top: 0; backdrop-filter: blur(8px);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
}
.brand {
  font-weight: 800; letter-spacing: .3px; font-size: 20px;
}
.brand span { color: var(--accent); }
.nav a {
  color: var(--muted); text-decoration: none; margin-left: 16px;
}
.nav a:hover { color: var(--text); }

.page { padding: 32px 0 64px; }
.hero h1 { font-size: clamp(24px, 4vw, 34px); margin: 0 0 8px; }
.hero p { margin: 0 0 22px; color: var(--muted); }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.login-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 560px;
}

.login-box {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 16px;
  padding: 16px;
}

.discord-logo {
  width: 64px; height: 64px;
  filter: drop-shadow(0 10px 20px rgba(88,101,242,.35));
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06); color: var(--text); text-decoration: none;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  font-weight: 600;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.22); }
.btn:active { transform: translateY(0); }
.btn.small { padding: 6px 10px; font-size: 12px; }

.btn-discord {
  background: var(--brand);
  border-color: transparent;
}
.btn-discord:hover { opacity: .95; }

.hint { color: var(--muted); font-size: 14px; }

.profile {
  display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: center;
}
.profile .avatar {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
}
.profile .info { line-height: 1.5; }
.id-row { display: inline-flex; align-items: center; gap: 8px; }

.actions { margin-top: 10px; }

.site-footer {
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--muted);
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .site-header .nav { display: none; }
  .profile { grid-template-columns: 56px 1fr; }
  .profile .avatar { width: 56px; height: 56px; }
}