@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f0f1a, #1b1b2f);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.4);
  animation: fadeIn 1.5s ease;
}

.logo {
  width: 150px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 15px #ff4b2b);
  transition: transform 1s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(2deg);
}

h1 {
  color: #8f70ff;
  font-size: 2rem;
}

h2 {
  color: #ff4b2b;
  margin-top: 0.5rem;
  font-size: 1.3rem;
}

.intro {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #cfcfcf;
  line-height: 1.6;
}

.glow-btn {
  background: linear-gradient(45deg, #8f70ff, #ff4b2b);
  border: none;
  padding: 0.9rem 1.6rem;
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 2rem;
  box-shadow: 0 0 15px rgba(143, 112, 255, 0.6);
  transition: 0.3s;
}

.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 75, 43, 0.8);
}

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