/* miris.bar */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #000000; color: #e0e0e0; font-family: 'Inter', sans-serif; line-height: 1.7; }
.hero { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; }
.open-sign { font-family: 'Fira Code', monospace; font-size: 0.7rem; color: #22c55e; text-shadow: 0 0 8px rgba(34,197,94,0.4); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem; }
.open-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.neon-brand { font-family: 'Sora', sans-serif; font-weight: 600; font-size: clamp(3rem, 8vw, 5rem); color: #a855f7; text-shadow: 0 0 10px #a855f7, 0 0 30px #a855f7, 0 0 60px rgba(168,85,247,0.3); }
.tagline { font-size: 0.85rem; color: #666; margin-top: 0.5rem; }
.menu { max-width: 500px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.glow-card { background: #111111; padding: 1.5rem; }
.glow-card.purple { border-top: 2px solid #a855f7; box-shadow: 0 -10px 30px rgba(168,85,247,0.15); }
.glow-card.pink { border-top: 2px solid #ec4899; box-shadow: 0 -10px 30px rgba(236,72,153,0.15); }
.glow-card.teal { border-top: 2px solid #14b8a6; box-shadow: 0 -10px 30px rgba(20,184,166,0.15); }
.card-title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 0.3rem; }
.card-text { font-size: 0.8rem; color: #888; margin-bottom: 0.5rem; }
.card-price { font-family: 'Fira Code', monospace; font-size: 0.7rem; color: #a855f7; }
.ambient { padding: 2rem 0; }
.ambient-strip { height: 4px; background: linear-gradient(90deg, #a855f7, #ec4899, #14b8a6, #a855f7); background-size: 200% 100%; animation: shift 8s linear infinite; }
@keyframes shift { from { background-position: 0% 0%; } to { background-position: 200% 0%; } }
.close-section { text-align: center; padding: 4rem 2rem; }
.close-text { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem; color: #666; }
.footer-brand { font-size: 0.6rem; color: #333; 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); }
