:root {
  color-scheme: dark;
  --bg: #111418;
  --panel: #1b2028;
  --panel-border: #343b46;
  --text: #f6f2e8;
  --muted: #b6bfcc;
  --accent: #f0bd4f;
  --accent-dark: #9b5d22;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #243140 0, transparent 30rem), var(--bg);
}

.site-header,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  min-height: 34vh;
  display: flex;
  align-items: end;
  padding: 56px 0 36px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
  padding-bottom: 48px;
}

.game-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 22px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
}

.game-card__status {
  width: max-content;
  margin: 0 0 16px;
  padding: 4px 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.game-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.game-card__description {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.game-card__link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: #16110a;
  background: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.game-card__link:hover {
  background: #ffd16b;
}
