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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0d0d0d url('local') center/cover no-repeat fixed;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.meteor {
  position: absolute;
  width: 2px;
  height: 80px;
  background: linear-gradient(-45deg, #00ffff, transparent);
  opacity: 0.7;
  animation: meteor-fall linear forwards;
  border-radius: 50%;
  z-index: 0;
}

.meteor.variant1 {
  width: 2px;
  height: 60px;
  background: linear-gradient(-45deg, #00ffcc, transparent);
}

.meteor.variant2 {
  width: 3px;
  height: 100px;
  background: linear-gradient(-45deg, #66ffff, transparent);
}

.meteor.variant3 {
  width: 2px;
  height: 80px;
  background: linear-gradient(-45deg, #33ccff, transparent);
}

@keyframes meteor-fall {
  0% {
    transform: translateX(0vw) translateY(0vh) rotate(45deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(-100vw) translateY(100vh) rotate(45deg);
    opacity: 0;
  }
}

.container {
  text-align: center;
  max-width: 600px;
  z-index: 1;
  animation: fadeInUp 1.5s ease-in-out;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 0.7rem;
  color: #00ffff;
}

#typing-text {
  border-right: 2px solid #00ffff;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #00ffff; }
}

p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  animation: fadeIn 2s ease-in-out;
}

.socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.socials a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  background: #222;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  transition: background 0.3s, transform 0.3s;
  animation: slideIn 1.5s ease-in-out;
}

.socials a:hover {
  background: #00ffff;
  color: #000;
  transform: scale(1.1);
}

.socials span {
  font-size: 1rem;
  color: #aaa;
  margin-top: -0.5rem;
}

footer {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 2rem;
  animation: fadeIn 3s ease-in-out;
}

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

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
