/* monopole.boo */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #1a2e1a; color: #d4d4a8; font-family: 'Lato', sans-serif; font-weight: 400; line-height: 1.7; }
.hero { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; padding: 2rem; }
.ghost { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.1); }
.ghost-1 { width: 50px; height: 50px; top: 20%; left: 15%; }
.ghost-2 { width: 35px; height: 35px; top: 40%; right: 20%; }
.ghost-3 { width: 60px; height: 60px; bottom: 25%; left: 40%; }
.brand { font-family: 'Lora', serif; font-weight: 700; font-size: clamp(2rem, 6vw, 3.5rem); color: #d4d4a8; position: relative; z-index: 1; }
.boo-text { font-family: 'Lora', serif; font-weight: 700; font-size: 0.85rem; color: #8b6f47; transform: rotate(5deg); margin-top: 0.5rem; }
.specimens { max-width: 520px; margin: 0 auto; padding: 3rem 1.5rem; }
.specimen { background: #2d4a2d; padding: 1.5rem; border: 1px solid #3d5a3d; margin-bottom: 1rem; }
.spec-label { font-family: 'Fira Code', monospace; font-size: 0.6rem; color: #8b6f47; display: block; margin-bottom: 0.5rem; }
.spec-title { font-family: 'Lora', serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.3rem; }
.spec-text { font-size: 0.85rem; color: #a3a378; }
.mushroom-divider { display: flex; flex-direction: column; align-items: center; padding: 1rem 0; }
.mushroom-cap { width: 30px; height: 15px; border-radius: 15px 15px 0 0; background: #c4956a; }
.mushroom-stem { width: 8px; height: 12px; background: #8b6f47; }
.shelf { display: flex; align-items: flex-end; justify-content: center; gap: 6px; padding: 3rem 2rem; }
.shelf-item { width: 40px; background: #2d4a2d; border: 1px solid #3d5a3d; }
.fade-out { text-align: center; padding: 4rem 2rem; }
.close-text { font-family: 'Lora', serif; font-weight: 700; font-size: 0.7rem; color: #3d5a3d; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
