:root {
  --void: #0b0f18;
  --ink: #e8eef6;
  --muted: #8b93a7;
  --cyan: #3dc8f5;
  --violet: #c14bff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--void);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.studio {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 32px;
  text-align: center;
}

.mark {
  width: min(420px, 86vw);
  height: auto;
  image-rendering: auto;
}

.tag {
  margin-top: 8px;
  color: var(--muted);
  letter-spacing: 0.42em;
  font-size: 11px;
  text-transform: uppercase;
}

.games {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.game {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid rgba(61, 200, 245, 0.35);
  border-radius: 4px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  background: linear-gradient(180deg, rgba(61, 200, 245, 0.08), rgba(193, 75, 255, 0.08));
}

.game:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(61, 200, 245, 0.18);
}

.foot {
  margin-top: 64px;
  color: var(--muted);
  font-size: 13px;
}

.foot a {
  color: var(--muted);
  text-decoration: none;
}

.foot a:hover {
  color: var(--ink);
}
