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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.logo-wrapper {
  margin-bottom: 3rem;
  animation: fadeDown 1s ease-out;
}

.logo {
  width: clamp(120px, 15vw, 220px);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease-out 0.2s both;
}

h1 span {
  color: #39FF14;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b0b0b0;
  max-width: 700px;
  animation: fadeUp 1s ease-out 0.4s both;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
  z-index: 1;
}

footer a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

footer a:hover {
  color: #39FF14;
}

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

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

@media (max-width: 768px) {

  footer {
    flex-direction: column;
    gap: 1rem;
  }

  p br {
    display: none;
  }

}
