* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  background: radial-gradient(ellipse at center, #0a0e1a 0%, #05070a 100%);
  color: #e2e8f0;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Subtle noise/dust overlay */
.noise-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}

.container {
  max-width: 480px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.phrases {
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 3rem;
  color: rgba(245, 241, 232, 0.9);
}

.phrases p {
  margin-bottom: 0.5rem;
}

.submit-btn {
  background: rgba(255, 191, 89, 0.15);
  color: #FFBF59;
  border: 1px solid rgba(255, 191, 89, 0.3);
  padding: 1.1rem 3.5rem;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.submit-btn:hover {
  background: rgba(255, 191, 89, 0.25);
  border-color: rgba(255, 191, 89, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: rgba(168, 162, 158, 0.15);
  color: rgba(168, 162, 158, 0.6);
  border-color: rgba(168, 162, 158, 0.2);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

