:root {
  color-scheme: light;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background: #f5e9d6;
}

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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #fff6e3, #f0d9b5 60%, #e6c79e 100%);
}

.page {
  width: min(95vw, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
}

#game {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(80, 45, 10, 0.25);
  background: #f6e4c7;
}

.other-games {
  width: 100%;
  text-align: center;
  font-size: 0.92rem;
  color: #5e3a1f;
}

.other-games a {
  color: #8a2a1d;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.other-games a:hover {
  color: #b23523;
}
