* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #0f2027 url('160754-149742767408ba.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#meteorCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.landing-container {
  z-index: 2;
  max-width: 90%;
  padding: 20px;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

h1 {
  font-size: 3em;
  margin: 0;
}

p {
  font-size: 1.2em;
  margin: 10px 0;
}

.enter-button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background-color: #00c292;
  color: white;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.enter-button:hover {
  background-color: #009877;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1.0s; }
.delay-3 { animation-delay: 1.5s; }
.delay-4 { animation-delay: 2.0s; }

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