/* Meadow Takeover — letterboxed canvas, cozy pasture chrome */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #2a3826;
  overflow: hidden;
  font-family: Georgia, "Palatino Linotype", Palatino, serif;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
  user-select: none;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#wrap {
  width: min(96vw, calc(96vh * 960 / 600));
  height: min(96vh, calc(96vw * 600 / 960));
  max-width: 960px;
  max-height: 600px;
}

#game {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  background: #7ea36c;
  cursor: default;
}

#studio-bar {
  position: relative;
  z-index: 20;
  flex: 0 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: #1c2619;
  color: #c9d4b8;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 0.92rem;
  box-sizing: border-box;
}
#studio-bar a {
  color: #f7efe3;
  font-weight: 700;
  text-decoration: none;
  margin-right: 0.45rem;
}
#studio-bar a:hover { text-decoration: underline; }

#wrap { margin-top: 8px; }
