:root {
  color-scheme: dark;
  --bg: #101310;
  --panel: #171a17;
  --panel-strong: #20251f;
  --line: #343b33;
  --text: #f7f2df;
  --muted: #aeb8aa;
  --gold: #eba72d;
  --green: #97d989;
  --red: #e28a65;
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at 16% 12%, rgba(235, 167, 45, 0.16), transparent 28rem),
    linear-gradient(135deg, #101310 0%, #151915 48%, #0b0d0b 100%);
  color: var(--text);
  margin: 0;
  min-height: 100vh;
}

.shell {
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(28px, 6vw, 76px) 20px 72px;
}

.hero {
  max-width: 760px;
}

.eyebrow {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(48px, 9vw, 104px);
  letter-spacing: -0.07em;
  line-height: 0.86;
  margin: 0;
}

.lede {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.5;
  max-width: 680px;
}

.panel,
.host-card {
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  border: 1px solid var(--line);
}

.auth-panel {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 34px;
  padding: 18px;
}

.auth-panel p,
.host-card p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  margin: 6px 0 0;
}

.button {
  align-items: center;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #111310;
}

.hosts-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 22px;
}

.host-card {
  padding: 18px;
}

.host-card h2 {
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 10px;
}

.host-meta {
  align-items: center;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  gap: 10px;
  margin-bottom: 16px;
}

.status {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
}

.status.online {
  color: var(--green);
}

@media (max-width: 680px) {
  .auth-panel {
    align-items: stretch;
    flex-direction: column;
  }
}
