*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1c291f;
  --moss: #2f5c44;
  --leaf: #6da87c;
  --sun: #e2b660;
  --soil: #b48b5a;
  --mist: #f4efe4;
  --cloud: #fbf9f2;
  --shadow: rgba(24, 34, 27, 0.18);
  --border: rgba(35, 57, 44, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1180px;
  --gutter: clamp(1.5rem, 3vw, 2.75rem);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #f6f2e6, #e6efdd 45%, #e9f0ed 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(26, 44, 32, 0.08) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(255, 244, 209, 0.7), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(202, 228, 213, 0.6), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.page {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gutter);
  backdrop-filter: blur(12px);
  background: rgba(248, 246, 237, 0.9);
  border-bottom: 1px solid rgba(200, 188, 165, 0.6);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f6e7b4, #5c8f67 70%);
  box-shadow: 0 0 0 4px rgba(109, 168, 124, 0.25);
}

.brand-name {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  gap: 1.6rem;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 0.2rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--moss), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, #2f5c44, #4f8a63);
  color: #f8f6f0;
  box-shadow: 0 14px 28px rgba(47, 92, 68, 0.2);
}

.btn.primary:hover {
  transform: translateY(-1px);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(79, 138, 99, 0.4);
  color: var(--moss);
}

.btn.danger {
  background: #c85c4b;
  color: #fff;
}

.btn.small {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 3rem var(--gutter) 5rem;
}

.hero {
  padding-top: 3rem;
}

.hero-grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-copy h1,
.section-head h2,
.cta-card h2 {
  font-family: "Spectral", serif;
  font-weight: 600;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: #5c6f62;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0.8rem 0 1rem;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 1.6rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(204, 193, 170, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.stat-label {
  font-size: 0.85rem;
  color: #607063;
}

.stat-value {
  font-weight: 600;
  margin-top: 0.35rem;
  display: block;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--cloud);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  border: 1px solid rgba(199, 188, 163, 0.6);
  box-shadow: 0 28px 60px rgba(39, 55, 45, 0.2);
  animation: float 6s ease-in-out infinite;
}

.hero-card-header {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(107, 168, 124, 0.18);
  color: var(--moss);
  font-weight: 600;
}

.tag.outline {
  background: transparent;
  border: 1px solid rgba(107, 168, 124, 0.5);
}

.hero-image {
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.hero-card-grid {
  display: grid;
  gap: 0.75rem;
}

.mini-card {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(195, 186, 165, 0.5);
}

.mini-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7a6f;
}

.mini-value {
  font-weight: 600;
  margin-top: 0.35rem;
  display: block;
}

.mini-note {
  font-size: 0.85rem;
  color: #566358;
}

.floating-runes span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(107, 168, 124, 0.4);
  background: rgba(255, 255, 255, 0.6);
  animation: drift 8s ease-in-out infinite;
}

.floating-runes span:nth-child(1) {
  top: -20px;
  right: 40px;
}

.floating-runes span:nth-child(2) {
  top: 40px;
  right: -10px;
  animation-delay: -2s;
}

.floating-runes span:nth-child(3) {
  bottom: 60px;
  left: 20px;
  animation-delay: -4s;
}

.floating-runes span:nth-child(4) {
  bottom: -10px;
  right: 120px;
  animation-delay: -6s;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0.7rem 0 0.9rem;
}

.section-head p {
  color: #5c6f62;
  line-height: 1.7;
}

.feature-grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  border: 1px solid rgba(198, 186, 164, 0.5);
  box-shadow: 0 18px 30px rgba(34, 50, 39, 0.12);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.game-section {
  position: relative;
}

.game-shell {
  max-width: var(--content-width);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(195, 182, 160, 0.6);
  box-shadow: 0 30px 70px rgba(30, 44, 36, 0.15);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.game-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  flex: 1 1 420px;
}

.metric {
  background: rgba(249, 247, 241, 0.9);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(203, 190, 165, 0.6);
}

.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6c7b6e;
}

.metric-value {
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  margin-top: 0.35rem;
}

.metric-sub {
  font-size: 0.85rem;
  color: #5b6a5d;
}

.weather-card {
  flex: 0 1 280px;
  background: linear-gradient(120deg, rgba(224, 239, 230, 0.9), rgba(252, 246, 229, 0.8));
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(195, 182, 160, 0.6);
}

.weather-card p {
  margin: 0.5rem 0 0;
  color: #4d5b50;
}

.game-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 1.5rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.resource {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(196, 184, 160, 0.5);
}

.resource-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.9rem;
}

.resource-track {
  margin-top: 0.5rem;
  height: 8px;
  border-radius: 999px;
  background: rgba(196, 184, 160, 0.35);
  overflow: hidden;
}

.resource-fill {
  display: block;
  height: 100%;
  width: 20%;
  background: linear-gradient(120deg, #6da87c, #cddbb2);
  transition: width 0.3s ease;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tool-info {
  display: flex;
  flex-direction: column;
}

.tool-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.tool-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.grid-wrap {
  background: rgba(248, 244, 234, 0.9);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(199, 187, 162, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.35rem;
}

.tile {
  position: relative;
  border: 1px solid rgba(134, 113, 84, 0.4);
  background: #f6f1e4;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(46, 62, 50, 0.12);
}

.tile::before,
.tile::after {
  content: "";
  position: absolute;
}

.tile-seed::before {
  width: 6px;
  height: 6px;
  background: #2e3d2f;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tile-sapling::before {
  width: 4px;
  height: 14px;
  background: #356a4a;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.tile-sapling::after {
  width: 12px;
  height: 12px;
  background: #7ab989;
  border-radius: 50%;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.tile-tree::before {
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 30% 30%, #9bd3a5, #4f8b64);
  border-radius: 50%;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.tile-tree::after {
  width: 6px;
  height: 14px;
  background: #5b3d22;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
}

.tile-meadow {
  background: linear-gradient(120deg, #dbe9c8, #f4f1d5);
}

.tile-meadow::before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #f7d879, transparent 70%);
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.tile-pond {
  background: radial-gradient(circle at 30% 30%, #c7e7f5, #6ba2c1);
}

.tile-pond::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.tile-shrine {
  background: linear-gradient(140deg, #f2ead7, #d7c3a3);
}

.tile-shrine::before {
  width: 14px;
  height: 14px;
  background: #9b7e5b;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 3px;
}

.tile-shrine::after {
  width: 6px;
  height: 6px;
  background: #f9f2d0;
  border-radius: 50%;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.tile-hut {
  background: linear-gradient(160deg, #f0e3cd, #e1c8a4);
}

.tile-hut::before {
  width: 18px;
  height: 10px;
  background: #8b5a3b;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) skewX(-10deg);
  border-radius: 4px 4px 2px 2px;
}

.tile-hut::after {
  width: 14px;
  height: 10px;
  background: #c8a27a;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.tile-beacon {
  background: linear-gradient(135deg, #f8f2d7, #e9d4a1);
}

.tile-beacon::before {
  width: 16px;
  height: 16px;
  border: 2px solid #c79d4d;
  border-radius: 50%;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(230, 178, 87, 0.6);
}

.tile-stone {
  background: linear-gradient(120deg, #dedbd2, #bcb5a7);
}

.grid-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #5c6a60;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 185, 160, 0.6);
}

.legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  display: inline-block;
}

.legend-swatch.tree {
  background: #5e8f6a;
}

.legend-swatch.meadow {
  background: #d7e7b6;
}

.legend-swatch.pond {
  background: #7fb0c9;
}

.legend-swatch.shrine {
  background: #bfa178;
}

.legend-swatch.hut {
  background: #c89f7b;
}

.legend-swatch.beacon {
  background: #e3c37d;
}

.game-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  border: 1px solid rgba(196, 184, 160, 0.5);
}

.panel-head h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.panel-head p {
  margin: 0;
  color: #5c6a60;
  font-size: 0.95rem;
}

.build-options {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
}

.build-option {
  text-align: left;
  background: rgba(248, 245, 236, 0.9);
  border: 1px solid rgba(196, 184, 160, 0.6);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease;
}

.build-option.selected {
  border-color: rgba(79, 138, 99, 0.7);
  box-shadow: 0 8px 20px rgba(79, 138, 99, 0.18);
}

.build-option:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.build-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.build-desc {
  font-size: 0.85rem;
  color: #5c6a60;
}

.build-cost {
  font-size: 0.8rem;
  color: #6d7a70;
  margin-top: 0.45rem;
}

.panel-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.quest-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.quest-list li {
  padding: 0.6rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(195, 182, 160, 0.6);
  background: rgba(247, 244, 235, 0.9);
  font-size: 0.9rem;
  position: relative;
  padding-left: 2.1rem;
}

.quest-list li::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(90, 120, 98, 0.6);
  transform: translateY(-50%);
}

.quest-list li[data-complete="true"] {
  background: rgba(221, 238, 221, 0.7);
  border-color: rgba(79, 138, 99, 0.5);
}

.quest-list li[data-complete="true"]::before {
  background: #4f8a63;
  border-color: #4f8a63;
}

.event-log {
  display: grid;
  gap: 0.5rem;
}

.event-log .event {
  background: rgba(248, 245, 236, 0.9);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(196, 184, 160, 0.5);
  font-size: 0.85rem;
  color: #59675d;
}

.world-grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.world-map {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(233, 239, 229, 0.6));
  border: 1px solid rgba(196, 184, 160, 0.6);
  overflow: hidden;
}

.map-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(107, 168, 124, 0.5);
}

.map-node,
.map-center {
  position: absolute;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(195, 182, 160, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
}

.map-node.north {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.map-node.east {
  top: 45%;
  right: 8%;
}

.map-node.south {
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
}

.map-node.west {
  top: 45%;
  left: 8%;
}

.map-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(107, 168, 124, 0.2);
}

.world-cards {
  display: grid;
  gap: 1rem;
}

.world-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(197, 185, 160, 0.6);
}

.timeline {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(196, 184, 160, 0.6);
}

.cta-section {
  max-width: var(--content-width);
  margin: 0 auto;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(255, 252, 242, 0.95), rgba(212, 231, 217, 0.85));
  border: 1px solid rgba(195, 182, 160, 0.6);
  box-shadow: 0 24px 50px rgba(31, 46, 37, 0.2);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.site-footer {
  padding: 2rem var(--gutter) 3rem;
  background: rgba(247, 244, 235, 0.9);
  border-top: 1px solid rgba(195, 182, 160, 0.6);
}

.footer-grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-note {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #5c6a60;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--delay, 0) * 120ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.clear-mode .grid-wrap {
  border-color: rgba(200, 92, 75, 0.6);
  box-shadow: 0 0 0 2px rgba(200, 92, 75, 0.2);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(8deg);
  }
}

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

  .game-layout,
  .world-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  main {
    padding: 2rem var(--gutter) 4rem;
  }

  .game-shell {
    padding: 1.5rem;
  }

  .game-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}
