:root {
  color-scheme: dark;
  --bg: #111418;
  --panel: #1b2229;
  --panel-2: #222b33;
  --text: #f7f2e8;
  --muted: #bcc6cf;
  --line: #384653;
  --gold: #e2bd6e;
  --green: #7dbb8d;
  --blue: #7fb4d8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #111418;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  min-height: 48vh;
  display: grid;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 32px;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  line-height: 1.55;
}

.lead {
  max-width: 760px;
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.actions a {
  color: #111418;
  background: var(--gold);
  text-decoration: none;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 6px;
}

.actions a:nth-child(2) {
  background: var(--green);
}

.actions a:nth-child(3) {
  background: var(--blue);
}

.panel {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

article {
  min-height: 154px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.server-line {
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.note {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--panel-2);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

ol {
  margin: 0;
  padding-left: 22px;
}

.rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.rules span {
  min-height: 52px;
  display: flex;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-weight: 750;
}
