@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400&display=swap');

:root {
  --night: #0d1117;
  --deep-navy: #131a2a;
  --indigo: #1b2540;
  --slate: #2a3654;
  --muted: #6b7a96;
  --soft: #a3b1c6;
  --cream: #e8dfd0;
  --warm-white: #f5f0e8;
  --amber: #e8a84c;
  --amber-dim: rgba(232, 168, 76, 0.6);
  --lantern-glow: rgba(232, 168, 76, 0.08);
  --lantern-glow-strong: rgba(232, 168, 76, 0.15);
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--night);
  color: var(--soft);
  overflow-x: hidden;
}

.splash {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 35%, var(--lantern-glow-strong), transparent),
    radial-gradient(ellipse 80% 60% at 50% 45%, var(--lantern-glow), transparent),
    linear-gradient(180deg, var(--deep-navy) 0%, var(--night) 60%, #0a0e14 100%);
  z-index: 0;
  pointer-events: none;
}

.lantern-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  animation: float 6s ease-in-out infinite;
}

.lantern {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  filter: drop-shadow(0 0 60px rgba(232, 168, 76, 0.3))
          drop-shadow(0 0 120px rgba(232, 168, 76, 0.1));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.title {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 3.8rem);
  color: var(--warm-white);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 40px rgba(232, 168, 76, 0.15);
}

.tagline {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--amber-dim);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.divider {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
  margin: 0 auto 2rem;
}

.description {
  position: relative;
  z-index: 1;
  max-width: 440px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 3rem;
}

.notify-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.coming-soon {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(232, 168, 76, 0.25);
  padding: 0.75rem 2rem;
  border-radius: 2px;
  animation: pulse-border 4s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(232, 168, 76, 0.25); }
  50% { border-color: rgba(232, 168, 76, 0.5); }
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 2rem;
}

.footer p {
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .lantern {
    width: 150px;
    height: 150px;
  }

  .splash {
    padding: 2rem 1.5rem;
  }
}
