/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Layout */
.container {
  display: flex;
  flex-direction: column;
  height: 92vh;
  justify-content: space-between;
  padding: 1.5rem;
}

.banner {
  position: fixed; /* Always sticks to the top */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #111;
  padding: 1rem 2rem;
  z-index: 10;
}

.banner h1 {
  font-size: 1.5rem;
  color: white;
}

/* Main content */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding-top: 100px; /* Offset for the fixed banner */
  text-align: center;
  gap: 2rem;
}


.coming-soon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons img {
  width: 32px;
  height: 32px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-icons img:hover {
  opacity: 1;
}

.social-icons img {
  filter: brightness(0) invert(1);
}

.footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  color: #aaa;
}
