/* monopole.bar */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: linear-gradient(135deg, #7c3aed, #ec4899); color: #ffffff; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; min-height: 100vh; }
.chrome-bar { height: 2px; background: linear-gradient(90deg, #e0e0e0, rgba(224,224,224,0.3)); }
.hero { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; padding: 2rem; overflow: hidden; }
.grid-floor { position: absolute; bottom: 0; left: -50%; width: 200%; height: 40%; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0px, transparent 1px, transparent 40px), repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0px, transparent 1px, transparent 40px); transform: perspective(300px) rotateX(40deg); transform-origin: bottom; }
.brand { font-family: 'Sora', sans-serif; font-weight: 600; font-size: clamp(2.5rem, 7vw, 4rem); letter-spacing: 0.05em; position: relative; z-index: 1; }
.chrome-line { width: 120px; height: 1px; background: linear-gradient(90deg, transparent, #e0e0e0, transparent); margin-top: 1rem; }
.est { font-family: 'Fira Code', monospace; font-size: 0.65rem; color: #c084fc; text-shadow: 0 0 8px rgba(192,132,252,0.4); margin-top: 0.75rem; }
.glow-strip { height: 2px; }
.glow-strip.purple { background: #c084fc; box-shadow: 0 0 10px #c084fc; }
.glow-strip.pink { background: #ec4899; box-shadow: 0 0 10px #ec4899; }
.menu { max-width: 500px; margin: 0 auto; padding: 3rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.menu-panel { background: rgba(0,0,0,0.5); padding: 1.5rem; border-radius: 4px; }
.menu-title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 0.03em; margin-bottom: 0.3rem; }
.menu-text { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.menu-price { font-family: 'Fira Code', monospace; font-size: 0.75rem; color: #c084fc; }
.atmosphere { text-align: center; padding: 5rem 2rem; }
.atm-text { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.2rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.exit { text-align: center; padding: 4rem 2rem; }
.close-text { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-brand { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.6rem; color: rgba(255,255,255,0.2); display: block; margin-top: 0.5rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
