body {
  min-height: 100vh;
  margin: 0;
  background-color: #f5f0e6;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
  box-sizing: border-box;
}

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

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.logo {
  width: 96px;
  animation: phone-spin 4s linear infinite;
  transform-style: preserve-3d;
}

h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1;
}

h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: 28px;
  line-height: 1.3;
}

@keyframes phone-spin {
  0% {
    transform: perspective(500px) rotateY(0deg) rotateZ(-4deg);
  }

  50% {
    transform: perspective(500px) rotateY(180deg) rotateZ(4deg);
  }

  100% {
    transform: perspective(500px) rotateY(360deg) rotateZ(-4deg);
  }
}

.coming-soon {
  max-width: 900px;
  margin-top: 48px;
}

.signoff {
  margin: 36px 0 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
}

.instagram-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  background-color: black;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

footer {
  margin-top: 48px;
  font-size: 14px;
  line-height: 1.5;
}

footer p {
  margin: 0;
}

@media (max-width: 600px) {
  body {
    padding: 56px 18px 32px;
  }

  .logo {
    width: 78px;
  }

  h1 {
    font-size: 36px;
  }

  .coming-soon {
    margin-top: 36px;
  }

  h2 {
    font-size: 22px;
  }

  .signoff {
    margin-top: 28px;
    font-size: 18px;
  }

  .instagram-button {
    width: 100%;
    max-width: 320px;
    padding: 14px 18px;
  }
}
