body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, sans-serif;
  background-color: #000000;
  text-align: center;
}

.container {
  padding: 2rem;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 300;
  margin-bottom: 2rem;
  text-wrap: pretty;
}

.coming-soon {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.24);
  padding: 1rem 2rem;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  text-transform: uppercase;
}

.image-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3/1.8;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

.stack-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.stack-image:nth-child(1) {
  transform: rotate(-5deg) translateY(10px);
  opacity: 0.4;
}

.stack-image:nth-child(2) {
  transform: rotate(0deg);
  opacity: 0.8;
}

.stack-image:nth-child(3) {
  transform: rotate(5deg) translateY(-10px);
  opacity: 1;
}

/* Hover effects */
.stack-image:hover {
  z-index: 100;
  opacity: 1;
}

.image-stack:hover .stack-image:nth-child(1) {
  transform: rotate(-8deg) translateY(15px);
}

.image-stack:hover .stack-image:nth-child(3) {
  transform: rotate(8deg) translateY(-15px);
}
