:root {
  --bg: #0b163f;
  --bg2: #172a63;
  --panel: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.2);
  --text: #f6f8ff;
  --muted: #d1dcff;
  --accent: #4c8dff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% 0%, #29439e 0%, transparent 35%),
              linear-gradient(145deg, var(--bg), var(--bg2));
}

.wrap {
  width: min(920px, calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 54px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
}

.card {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(9px);
  padding: 22px;
}

h1, h2, h3, p { margin: 0; }

h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); }

.sub {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta span {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  padding: 6px 10px;
  font-size: .85rem;
  font-weight: 700;
}

.section {
  margin-top: 18px;
}

.section h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.section h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.section p {
  color: var(--muted);
  line-height: 1.6;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(130deg, var(--accent), #7862ff);
}

.btn.ghost {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
}
