@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Chakra Petch", sans-serif;
  height: 100vh;
  background: transparent;
  color: #ffffff;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: slow-rotate 20s linear infinite;
}

.logo img {
  height: 240px;
  width: auto;
}

.content {
  position: absolute;
  left: 160px;
  bottom: 64px;
}

h1 {
  font-size: 50px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.subtitle {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.5;
  color: #9aa4ff;
}

.coming {
  position: absolute;
  right: 160px;
  bottom: 64px;
  font-size: 20px;
  color: #8c90ff;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .content {
    left: 32px;
    bottom: 32px;
  }

  .coming {
    right: 32px;
    bottom: 32px;
  }

  h1 {
    font-size: 36px;
  }

  .logo img {
    width: auto;
  }
}



@media (max-width: 480px) {

  .hero {
    min-height: 100svh;
  }

  .logo {
    top: 50%;
  }

  .logo img {
    height: 110px;
  }

  .content {
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
    text-align: center;
  }

  h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .subtitle {
    font-size: 14px;
  }

  .coming {
    right: auto;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    font-size: 13px;
  }
}


.bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

@keyframes slow-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

