:root {
  --bg: #0f1116;
  --card: #181c24;
  --text: #e8ecf2;
  --muted: #8a93a3;
  --accent: #5865f2;
  --steam: #1b2838;
  --line: #262c38;
  --ok: #57f287;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.card {
  width: 100%;
  max-width: 560px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

h1 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -.01em;
}

p { margin: 0 0 16px; }

.muted { color: var(--muted); }
.small { font-size: 13px; }

.steps {
  margin: 16px 0 24px;
  padding-left: 20px;
  color: var(--muted);
}
.steps li { margin: 4px 0; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: filter .15s;
}
.btn:hover { filter: brightness(1.08); }

.btn-discord { background: var(--accent); }

.row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 24px 0;
  padding: 20px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.profile {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.avatar {
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: cover;
  background: #222;
  flex-shrink: 0;
}

.label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.name {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.id {
  font-size: 12px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.link {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
}
.link:hover { text-decoration: underline; }

.arrow {
  color: var(--ok);
  font-size: 24px;
  text-align: center;
}

@media (max-width: 480px) {
  .card { padding: 22px; }
  .row { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); }
}
