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

:root {
  --cream:       #F5E6D3;
  --cream-dark:  #E8D4B8;
  --terracotta:  #C4622D;
  --pot-red:     #8B2E2E;
  --sage:        #7A9B6E;
  --pink:        #F4A8B8;
  --blue:        #8FB8D8;
  --gold:        #E8B84B;
  --wood:        #4A3526;
  --wood-light:  #6B4E3D;
}

html, body {
  width: 100%;
  height: 100%;
  background: var(--wood);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game {
  display: block;
  touch-action: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.crt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.07) 3px,
    rgba(0, 0, 0, 0.07) 4px
  );
  z-index: 10;
}

@media (prefers-reduced-motion: reduce) {
  .crt-overlay {
    display: none;
  }
}
