*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #fcb21d;
  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --font-sans: 'Karla', sans-serif;
  --font-serif: 'Rufina', Georgia, serif;
}

html {
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}

body {
  font-family: var(--font-sans);
  background: #050a1b;
  color: var(--white);
  min-height: 100dvh;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #050a1b;
}

.bg-image {
  position: absolute;
  inset: 0;
  background: url('../assets/back-02.jpg') center center / cover no-repeat;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 10, 27, 0.55) 0%,
    rgba(5, 10, 27, 0.35) 45%,
    rgba(5, 10, 27, 0.65) 100%
  );
}

.page {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(10px + var(--safe-t)) 20px 10px;
  min-height: 0;
  overflow: hidden;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 9vh, 80px);
  width: 100%;
  max-width: 520px;
  padding-top: clamp(36px, 10vh, 96px);
  transform: translateY(2vh);
}

.logo {
  width: min(240px, 68vw);
  height: auto;
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 34ch;
  flex-shrink: 0;
  animation: rise 0.8s ease both;
}

.coming-soon-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(220px, 52vw);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(252, 178, 29, 0.65);
  animation: pulse 2.4s ease-in-out infinite;
}

.badge-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(252, 178, 29, 0.15));
}

.coming-soon-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 5.5vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  background: linear-gradient(
    105deg,
    #ffe08a 0%,
    var(--gold) 42%,
    #fff4cc 58%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s ease-in-out infinite;
  text-shadow: none;
  filter: drop-shadow(0 2px 18px rgba(252, 178, 29, 0.28));
}

.coming-soon-text {
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.88); }
}

footer {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 20px calc(12px + var(--safe-b));
  text-align: center;
}

.footer-line {
  width: min(420px, 58%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  opacity: 0.85;
}

footer p {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
}

@media (min-width: 768px) {
  .page {
    padding: calc(12px + var(--safe-t)) 28px 12px;
  }

  .hero {
    max-width: 560px;
    gap: clamp(48px, 10vh, 88px);
    padding-top: clamp(52px, 12vh, 104px);
    transform: translateY(2.5vh);
  }

  .logo {
    width: min(280px, 36vw);
  }

  .coming-soon { gap: 16px; max-width: 38ch; }
  .coming-soon-badge { width: min(260px, 40vw); }
  footer p { font-size: 0.86rem; }
  .footer-line { width: min(560px, 68%); }
}

@media (max-width: 600px) {
  .bg-image {
    background-position: center center;
  }

  .bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 10, 27, 0.62) 0%,
      rgba(5, 10, 27, 0.4) 50%,
      rgba(5, 10, 27, 0.68) 100%
    );
  }

  .hero {
    gap: clamp(36px, 8vh, 64px);
    padding-top: clamp(32px, 9vh, 72px);
    transform: translateY(1.5vh);
    max-width: 100%;
  }

  .logo {
    width: min(240px, 68vw);
  }

  .coming-soon { gap: 12px; }
}

@media (max-height: 740px) {
  .hero {
    gap: clamp(28px, 6vh, 48px);
    padding-top: clamp(20px, 6vh, 48px);
    transform: translateY(1vh);
  }

  .coming-soon-text {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  footer {
    padding: 8px 16px calc(10px + var(--safe-b));
    gap: 8px;
  }

  footer p { font-size: 0.74rem; }
}
