@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Noto+Sans:wght@400;500;700;800;900&display=swap");

:root {
  --font-heading: "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html, body {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.game-cover,
.game-thumb {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: var(--panel);
}

.game-cover {
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
}

.game-thumb {
  aspect-ratio: 4 / 3;
  margin-bottom: 12px;
}

.theme-icon {
  width: 1.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
