* {
  box-sizing: border-box;
}

html,
body {
  background: black;
  font-family: "Lato", sans-serif;
  color: white;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  padding: 20px;
}

.logo-section {
  flex-shrink: 0;
  padding-bottom: 20px;
}

.logo-section img {
  max-width: 500px;
  max-height: 200px;
  width: auto;
  height: auto;
}

.hero-and-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coming-soon-content {
  flex-shrink: 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-content h1 {
  font-size: 48px;
  font-weight: normal;
  margin: 0;
  text-align: center;
}

.hero-section {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section img {
  min-width: 312px;
  max-width: 90vw;
  max-height: 60vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.copyright {
  flex-shrink: 0;
  text-align: center;
  color: #999;
  font-size: 24px;
  margin-top: auto;
  padding-top: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .logo-section img {
    max-width: 300px;
    max-height: 120px;
  }

  .coming-soon-content h1 {
    font-size: 36px;
  }

  .hero-section img {
    max-height: 35vh;
  }

  .copyright {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .coming-soon-container {
    padding: 15px;
  }

  .logo-section img {
    max-width: 250px;
    max-height: 100px;
  }

  .coming-soon-content h1 {
    font-size: 28px;
  }

  .hero-section img {
    max-height: 30vh;
  }

  .copyright {
    font-size: 18px;
  }
}

@media (max-height: 1000px) {
  .hero-section img {
    max-height: 50vh;
  }
}