* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  height: 100vh;
  background: #000;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* ⭐ STAR BACKGROUND */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 2s infinite ease-in-out;
  opacity: 0.3;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* CONTENT ABOVE STARS */
.container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

.logo {
  width: 140px;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #FFD700; /* Gold-Yellow */
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
}


.typing {
  font-size: 1.2rem;
  color: #ffcc55;
  min-height: 30px;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

.discord { background: #5865F2; }
.contact { background: #ff4c60; }

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  font-size: 0.9rem;
  color: #aaa;
  z-index: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* 🌠 Shooting Star */
.shooting-star {
  position: absolute;
  width: 2px;
  height: 80px;
  background: linear-gradient(-45deg, white, rgba(255,255,255,0));
  opacity: 0.8;
  transform: rotate(45deg);
  animation: shoot 1s linear forwards;
}

@keyframes shoot {
  0% {
    transform: translate(0, 0) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translate(-600px, 600px) rotate(45deg);
    opacity: 0;
  }
}
