/* parallel.quest */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: linear-gradient(180deg, #0c1445, #1a0a3e); color: #e2e8f0; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; min-height: 100vh; }

@keyframes glowPulse {
  0% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
  50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.5); }
  100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.hero { text-align: center; padding: 8rem 2rem 4rem; position: relative; overflow: hidden; background: #1e1b4b; }
.star { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #e2e8f0; }
.s1 { top: 10%; left: 15%; opacity: 0.8; }
.s2 { top: 25%; right: 20%; opacity: 0.4; }
.s3 { top: 40%; left: 45%; opacity: 0.6; }
.s4 { top: 15%; left: 70%; opacity: 0.3; }
.s5 { top: 55%; left: 25%; opacity: 0.5; }
.s6 { top: 60%; right: 30%; opacity: 0.7; }
.s7 { top: 75%; left: 50%; opacity: 0.2; }
.s8 { top: 80%; left: 10%; opacity: 0.5; }
.s9 { top: 35%; right: 10%; opacity: 0.4; }
.brand { font-family: 'Cormorant', serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3.5rem); position: relative; z-index: 1; }
.subtitle { font-size: 0.8rem; opacity: 0.6; margin-top: 0.5rem; position: relative; z-index: 1; }
.journey { max-width: 480px; margin: 0 auto; padding: 2rem 2rem; text-align: center; background: #1e1b4b; }
.chapter-label { font-family: 'Cormorant', serif; font-weight: 400; font-style: italic; font-size: 0.85rem; color: #f59e0b; margin-bottom: 1.5rem; }
.quest-marker { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #f59e0b; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.marker-num { font-family: 'Fira Code', monospace; font-size: 0.65rem; color: #f59e0b; }
.quest-block { margin-bottom: 1.5rem; }
.quest-title { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.2rem; margin-bottom: 0.5rem; }
.quest-desc { font-size: 0.8rem; opacity: 0.7; max-width: 380px; margin: 0 auto; }
.path-line { width: 1px; height: 40px; background: rgba(245, 158, 11, 0.4); margin: 0 auto 1rem; }
.portal { text-align: center; padding: 4rem 2rem; background: #1e1b4b; }
.portal-circle { width: 200px; height: 200px; border-radius: 50%; border: 3px solid #8b5cf6; box-shadow: 0 0 40px rgba(139, 92, 246, 0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto; animation: glowPulse 3s ease-in-out infinite; }
.portal-text { font-family: 'Cormorant', serif; font-weight: 400; font-style: italic; font-size: 0.85rem; color: #8b5cf6; }
.dimension { text-align: center; padding: 3rem 2rem 5rem; background: #1e1b4b; }
.end-text { font-family: 'Cormorant', serif; font-weight: 400; font-size: 1rem; opacity: 0.5; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
