:root {
  color-scheme: dark;
  --bg: #071017;
  --card: #101b24;
  --line: #223242;
  --text: #eef7ff;
  --muted: #9badba;
  --brand: #18a8ff;
  --brand-strong: #00d4ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(24, 168, 255, 0.16), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(0, 212, 255, 0.1), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(24px, 6vw, 80px);
}

.hero {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: rgba(16, 27, 36, 0.82);
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h1 span {
  color: var(--brand);
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

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

a,
button {
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #03121b;
  background: var(--brand);
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

button {
  color: var(--text);
  background: #142331;
  border: 1px solid var(--line);
}

.panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(16, 27, 36, 0.86);
  padding: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.panel-head,
.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-head p,
.metric span {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.panel-head h2 {
  margin: 4px 0 0;
  font-size: clamp(22px, 3vw, 34px);
}

.pulse {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--brand-strong);
  box-shadow: 0 0 0 9px rgba(0, 212, 255, 0.12);
}

.metric {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(7, 16, 23, 0.55);
}

.metric strong {
  text-align: right;
}

.game {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 16, 23, 0.55);
}

.game-title {
  margin-bottom: 12px;
  font-weight: 800;
}

.boost-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 5px;
}

.boost-grid i {
  height: 16px;
  border-radius: 4px;
  background: #20313f;
}

.boost-grid i.active {
  background: var(--brand);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
