/* gozmoke-poetry.css — copie minimale (sans canvas poésie pour index GoDrinkz) */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

#poetryOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  line-height: 1.6;
  padding: 0;
  box-sizing: border-box;
  z-index: 25;
  overflow: hidden;
  pointer-events: none;
}

#poetryOverlay #poem-title {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

#poetryOverlay #poem-text {
  white-space: pre-wrap;
  text-align: center;
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
}

#poetry-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 25;
}

#recentPoemsContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-radius: 10px;
  z-index: 40;
  max-width: 80%;
  max-height: 80%;
  overflow-y: auto;
  display: none;
  font-family: 'Press Start 2P', cursive;
}
