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

body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container {
  text-align: center;
  z-index: 2;
}

.title {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #00ffc3;
}

.name {
  font-size: 3.5rem;
  color: #00ffcc;
  text-shadow: 0 0 25px #00ffc3, 0 0 50px #00ffc3;
}

.subtitle {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #aefdfc;
  text-shadow: 0 0 10px #00ffee;
}

.btn {
  padding: 15px 40px;
  font-size: 1.3rem;
  border: 2px solid #00ffc3;
  background-color: transparent;
  color: #00ffc3;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ffc3;
}

.btn:hover {
  background-color: #00ffc3;
  color: #000;
  box-shadow: 0 0 20px #00ffc3, 0 0 40px #00ffc3;
}

/* Background Glow */
.background {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 0;
}

.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #00ffc3 0%, transparent 70%);
  top: 10%;
  left: -20%;
  opacity: 0.4;
  animation: pulse 8s infinite ease-in-out;
}

.glow2 {
  top: 60%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

/* Floating Leaves (natural touch) */
.leaf {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url('https://cdn-icons-png.flaticon.com/512/427/427735.png') no-repeat center/contain;
  opacity: 0.15;
  animation: floatLeaf 15s linear infinite;
}

.leaf1 {
  top: 10%;
  left: 20%;
  animation-duration: 20s;
}

.leaf2 {
  top: 50%;
  left: 80%;
  animation-duration: 25s;
}

.leaf3 {
  top: 70%;
  left: 40%;
  animation-duration: 18s;
}

@keyframes floatLeaf {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}
