* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #ffd6e8 0%,
    #ffb3d9 25%,
    #ffc9e5 50%,
    #ffe0f0 75%,
    #fff0f8 100%
  );
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  animation: fadeIn 1.5s ease-in-out;
}

.logo {
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.coming-soon {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: #d4457d;
  text-align: center;
  letter-spacing: 0.1em;
  animation: fadeIn 1.5s ease-in-out 0.3s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    max-width: 85%;
    max-height: 80vh;
  }

  .coming-soon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 80%;
    max-height: 70vh;
  }

  .container {
    padding: 15px;
  }

  .coming-soon {
    font-size: 2rem;
  }
}

@media (orientation: landscape) and (max-height: 600px) {
  .logo {
    max-height: 85vh;
  }
}
