body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  color: #fff;
  background-color: #000;
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stars {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #222 10%, #000 90%);
  animation: pulse 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

.container {
  text-align: center;
  z-index: 1;
  padding: 2rem;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.title {
  font-size: 4rem;
  letter-spacing: 0.4rem;
  background: linear-gradient(to right, #9ecfff, #f0f0f0, #9ecfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.subtitle {
  font-size: 1.5rem;
  color: #ccc;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.quote-box {
  font-size: 1.2rem;
  padding: 1.5rem;
  border-left: 3px solid #9ecfff;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

button {
  background-color: #9ecfff;
  border: none;
  color: #000;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #bde0ff;
}
