:root {
    --primary-color: #4e4e4e; /* Default fallback - will be overridden by game config */
}

body {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.87);
  background-color: var(--primary-color);
}

#app {
  width: 100%;
  height: 100svh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inputPrompt {
  outline: none;
  width: 132px;
  height: 35px;
  text-align: center;
  color: #550B6C;
  background: transparent;
  border: none;
  font-size: 30px;
  font-weight: 1000;
  -webkit-text-stroke: 0.5px white;
}

.help-dialog-content {
  margin-top: 1.2rem;
  max-height: 80svh;
  overflow-y: auto;
}

@media (min-width: 2000px) {
  .help-dialog-content {
    max-height: 60svh;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

input {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

h1, h2, h3 {
  color: #e3b24e;
}

ul {
  list-style-type: disc;
}

p {
  margin-bottom: 15px;
}

.emoji {
  font-size: 1.2em;
}
