
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 40px;
}

h1 {
  font-size: 3em;
  background: linear-gradient(45deg, #facc15, #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s infinite;
}

p {
  font-size: 1.2em;
  margin-top: 20px;
  color: #d1d5db;
}

.glow-ring {
  margin: 50px auto 0;
  width: 100px;
  height: 100px;
  border: 5px solid #facc15;
  border-radius: 50%;
  animation: glow 2s ease-in-out infinite;
}

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

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #facc15;
  }
  50% {
    box-shadow: 0 0 25px #facc15, 0 0 50px #facc15;
  }
  100% {
    box-shadow: 0 0 5px #facc15;
  }
}
