@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0b0b0b 0%, #1c1f26 80%);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: white;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  animation: pulse 8s infinite alternate ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.1; transform: scale(1); }
  100% { opacity: 0.3; transform: scale(1.1); }
}

.container {
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
  animation: fadeIn 2.2s ease-out;
}

h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

p {
  font-size: 1.3rem;
  line-height: 1.5;
  opacity: 0.9;
}

.accent {
  color: #ff4d4d;
  font-weight: 700;
}
