* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  color: #ffffff;
  background: #090909;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.coming-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 72% 20%, rgba(255, 227, 45, 0.18) 0%, rgba(255, 227, 45, 0) 28%), radial-gradient(circle at 10% 88%, rgba(239, 35, 60, 0.30) 0%, rgba(239, 35, 60, 0) 34%), linear-gradient(135deg, #090909 0%, #1b0c0f 48%, #3a1017 100%);
}

.coming-page:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.28;
}

.brand-orbit {
  position: absolute;
  border: 1px solid rgba(255, 227, 45, 0.20);
  pointer-events: none;
}

.orbit-one {
  width: 620px;
  height: 620px;
  right: -240px;
  top: 70px;
  border-radius: 80px;
  transform: rotate(18deg);
  animation: slowRotate 22s linear infinite;
}

.orbit-two {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: 70px;
  border-radius: 50%;
  border-color: rgba(239, 35, 60, 0.24);
  animation: floatShape 6s ease-in-out infinite;
}

.floor-lines {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  height: 260px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0px, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 84px);
  transform: perspective(420px) rotateX(62deg);
  transform-origin: bottom;
  opacity: 0.45;
}

.simple-coming {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px;
}

.logo-card {
  width: 200px;
  display: inline-flex;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  margin: 0 0 34px;
  animation: fadeUp 850ms ease both;
}

.simple-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: #ffe32d;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 227, 45, 0.20);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  backdrop-filter: blur(14px);
  animation: fadeUp 850ms ease 120ms both;
}

.simple-coming h1 {
font-family: "Playfair Display", Georgia, serif;
    color: #ffffff;
    max-width: 880px;
    font-size: 70px;
    line-height: 80px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 18px;
    text-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    animation: fadeUp 850ms ease 220ms both;
}

.simple-coming p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  margin: 0;
  animation: fadeUp 850ms ease 330ms both;
}

@keyframes slowRotate {
  0% {
    transform: rotate(18deg);
  }

  100% {
    transform: rotate(378deg);
  }
}

@keyframes floatShape {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .simple-coming h1 {
    font-size: 58px;
    line-height: 68px;
  }

  .simple-coming p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .simple-coming {
    padding: 50px 18px;
  }

  .logo-card {
    width: 280px;
  }

  .simple-label {
    border-radius: 14px;
  }

  .simple-coming h1 {
    font-size: 46px;
    line-height: 56px;
  }
}
