/* reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* corpo */
body {
  background: #0F0C0E;
  color: #E6E1D6;
  font-family: 'Cormorant Garamond', serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.04em;
}

/* container do jogo */
.game {
  position: relative;
  text-align: center;
  max-width: 500px;
  padding: 2rem;
}

/* textos */
.intro {
  opacity: 0.7;
}

.prompt {
  margin-top: 3rem;
}

.hint {
  margin-top: 24px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* escolhas */
.choices {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.choices span {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.choices span:hover {
  opacity: 1;
}

/* estrelas */
.star {
  position: absolute;
  font-size: 1.2rem;
  color: #24544d;
  opacity: 0.25;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.star:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* estado escondido – regra soberana */
.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 1s ease;
}

/* ruído de fundo */
.veil {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(rgba(36,84,77,0.35) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.12;
  pointer-events: none;
}
