:root {
  --bg: #08080a;
  --panel: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.86);
  --muted: rgba(255, 255, 255, 0.56);
  --accent: #fbbf24;
  --ok: #34d399;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(1200px 500px at 10% -20%, rgba(251, 191, 36, 0.08), transparent 65%), var(--bg);
  color: var(--text);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
  color: var(--ok);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  max-width: 840px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}

.logo {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbf24 0%, #f87171 100%);
  color: #000;
  font-weight: 700;
}

.back {
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 8px 12px;
  color: var(--muted);
}

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

h1 {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 600;
}

.meta {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}

h2 {
  margin: 24px 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

p,
li {
  line-height: 1.65;
  color: var(--muted);
  font-size: 14px;
}

ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.inline-links {
  margin-top: 22px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}
