/* mystical.quest */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #000000; color: #d4d4d4; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; }
.hero { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 2rem; position: relative; }
.medallion { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, #e8e8e8, #505050, #a0a0a0, #e8e8e8); margin-bottom: 2rem; }
.hero-content { text-align: center; }
.quest-level { font-family: 'Fira Code', monospace; font-size: 0.6rem; background: linear-gradient(to bottom, #e8e8e8, #a0a0a0, #e8e8e8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: 0.5rem; letter-spacing: 0.15em; }
.brand { font-family: 'Sora', sans-serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3.5rem); background: linear-gradient(to bottom, #e8e8e8, #a0a0a0, #e8e8e8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tagline { font-size: 0.8rem; color: #c084fc; margin-top: 0.5rem; }
.chrome-line { width: 80px; height: 1px; background: linear-gradient(to right, #505050, #e8e8e8, #505050); margin: 0 auto; }
.realms { max-width: 520px; margin: 0 auto; padding: 3rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.realm-panel { padding: 1.5rem; border: 2px solid; border-image: linear-gradient(to bottom, #e8e8e8, #505050) 1; }
.realm-title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem; background: linear-gradient(to bottom, #e8e8e8, #a0a0a0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; }
.realm-text { font-size: 0.8rem; color: #888; }
.realm-id { font-family: 'Fira Code', monospace; font-size: 0.55rem; color: #505050; display: block; margin-top: 0.75rem; }
.achievements { padding: 2rem; }
.badge-row { display: flex; justify-content: center; gap: 1rem; }
.chrome-badge { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #e8e8e8, #505050, #a0a0a0); }
.chrome-badge.locked { opacity: 0.25; }
.portal { display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; }
.portal-rings { position: relative; width: 200px; height: 200px; }
.ring { position: absolute; border-radius: 50%; border: 1px solid; }
.r1 { inset: 0; border-image: linear-gradient(135deg, #e8e8e8, #505050) 1; border-radius: 50%; border-color: #a0a0a0; box-shadow: 0 0 20px rgba(192,132,252,0.1); }
.r2 { inset: 25px; border-color: #707070; box-shadow: 0 0 15px rgba(192,132,252,0.08); }
.r3 { inset: 50px; border-color: #505050; box-shadow: 0 0 10px rgba(192,132,252,0.05); }
.close { text-align: center; padding: 3rem 2rem; }
.footer-brand { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.6rem; color: #1a1a1a; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
