
:root {
  --bg: #080808;
  --gold: #d4af37;
  --gold-light: #f3d67a;
  --gold-dark: #8f6a10;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --shadow: 0 0 40px rgba(212, 175, 55, 0.08);
  --transition: all 0.35s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(212,175,55,0.08), transparent 25%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 45%, #050505 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

.navbar {
  position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: flex-start;
  align-items: center; padding: 18px 5%; z-index: 999; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.nav-logo {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-family: 'Cinzel', serif; color: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.35);
  background: linear-gradient(145deg, rgba(212,175,55,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 0 18px rgba(212,175,55,0.12);
}

.hero {
  min-height: 100vh; display: grid; place-items: center; text-align: center;
  position: relative; padding: 120px 5% 80px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.09), transparent 38%); z-index: 0;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(243,214,122,0.75); box-shadow: 0 0 12px rgba(243,214,122,0.7);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  from { transform: translateY(30px) scale(0.6); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  to { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}

.hero-content { position: relative; z-index: 1; max-width: 960px; }
.hero-welcome {
  color: var(--gold-light); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; font-size: 0.95rem;
}
.hero-title {
  font-family: 'Cinzel', serif; font-size: clamp(2.8rem, 7vw, 6.2rem); line-height: 1.05;
  color: #fff9e9; text-shadow: 0 0 22px rgba(212,175,55,0.18);
}
.hero-subtitle {
  margin: 24px auto 0; max-width: 760px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.15rem);
}

.wip-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 38px;
  padding: 14px 28px; border-radius: 999px;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.28);
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 0 28px rgba(212,175,55,0.10);
  backdrop-filter: blur(8px);
  animation: fadeInUp 1s ease 0.5s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.wip-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.scroll-line {
  width: 1px; height: 52px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulseLine 1.8s infinite;
}
@keyframes pulseLine { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

.footer {
  border-top: 1px solid rgba(212,175,55,0.08); padding: 22px 5%;
  background: rgba(5,5,5,0.75); text-align: center;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer p { color: var(--muted); font-size: 0.92rem; }
.gold { color: var(--gold-light); }

@media (max-width: 760px) {
  .hero-subtitle br { display: none; }
  .hero-title { font-size: 2.5rem; }
  .wip-badge { font-size: 0.92rem; padding: 12px 22px; }
}
