html, body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', 'Fira Mono', 'Roboto Mono', 'Consolas', 'Liberation Mono', 'Menlo', 'monospace';
  font-size: 3rem;
  color: #e5e9f0;
  background: #222;
  overflow: hidden;
  position: relative;
}

.coming-soon {
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow:
    0 4px 16px #111b2a,
    0 2px 4px #232a3b88,
    0 0 4px #5e81ac88;
  letter-spacing: 0.08em;
}

.faq {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #e5e9f0;
  text-shadow:
    0 4px 16px #111b2a,
    0 2px 4px #232a3b88,
    0 0 4px #5e81ac88;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: top 0.4s ease;
}

.faq-questions {
  position: absolute;
  top: 65%;
  right: 5%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #e5e9f0;
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.question-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-question {
  cursor: pointer;
  color: #81a1c1;
  text-decoration: underline;
  text-align: right;
}

.faq-question:hover {
  color: #5e81ac;
}

.faq-answer {
  font-size: 1.2rem;
  color: #bfc9db;
  font-style: italic;
  text-align: right;
  line-height: 1.4;
  margin-left: 1rem;
}