:root {
  --color-primary: #2563eb;
  --color-primary-contrast: #ffffff;
  --color-bg: #eef4fb;
  --color-surface: #ffffff;
  --color-text: #172033;
  --color-muted: #667085;
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.game-card img {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
