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

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

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: radial-gradient(circle at top, #0a0a0f, #000);
  overflow: hidden;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}


canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}


.container {
  position: relative;
  z-index: 2; 
  text-align: center;
  animation: fadeIn 2s ease-in-out;
  transform: translateY(-30px); 
}

.title {
  font-size: 3em;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.glow-text {
  color: #00ffff;
  text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
  animation: pulseGlow 3s infinite alternate;
}

.subtitle {
  font-size: 1.3em;
  font-weight: 300;
  color: #aaa;
  margin-bottom: 20px;
}

.intro {
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
  font-size: 1.1em;
  color: #ddd;
}

.accent {
  color: #00ffff;
}


.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  font-size: 1em;
}

.btn.primary {
  background: linear-gradient(90deg, #00ffff, #0077ff);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px #00ffff;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
}

.btn.secondary:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 20px #00ffff;
}


footer {
  position: fixed;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
  z-index: 2;
}

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

@keyframes pulseGlow {
  from {text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;}
  to {text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff;}
}
