/* Basic mobile layout and animations */
.mp-container{max-width:420px;margin:12px auto;font-family:system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial}
.mp-header{display:flex;align-items:center;gap:12px}
.mp-badge{background:#e6fff0;color:#0a7a3f;padding:8px 12px;border-radius:20px;font-weight:600}
.mp-row{display:flex;align-items:center;gap:12px}
.mp-bracelet{width:84px;height:84px;border-radius:50%;display:flex;align-items:center;justify-content:center;animation:rotate 6s linear infinite}
.mp-bracelet svg{width:68px;height:68px}
@keyframes rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}
.mp-info{font-size:14px}
.mp-info b{display:block}
.mp-map-wrap{width:100%;max-width:420px;margin-top:12px;display:flex;justify-content:center}
.mp-map{width:320px;height:320px;border-radius:50%;overflow:hidden;border:6px solid rgba(0,0,0,0.08);box-shadow:0 6px 20px rgba(0,0,0,0.12);position:relative;animation:slow-rotate 20s linear infinite}
@keyframes slow-rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}
.mp-leaflet{width:100%;height:100%}
.mp-pulse{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:40px;height:40px;border-radius:50%;pointer-events:none}
.mp-pulse.red{box-shadow:0 0 0 0 rgba(255,0,0,0.8);animation:mp-pulse 1.2s ease-out forwards}
@keyframes mp-pulse{0%{box-shadow:0 0 0 0 rgba(255,0,0,0.8)}100%{box-shadow:0 0 0 28px rgba(255,0,0,0)}}
.mp-alert{position:fixed;left:12px;right:12px;bottom:12px;background:linear-gradient(90deg,#ffefef,#ffe6e6);border:1px solid #ffbdbd;padding:12px;border-radius:12px;display:flex;align-items:center;gap:12px;box-shadow:0 8px 30px rgba(0,0,0,0.12);z-index:9998}
.mp-alert.hidden{display:none}
.mp-btn{padding:8px 10px;border-radius:8px;background:#111;color:#fff;border:none}
.mp-popup{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);background:red;color:white;font-weight:bold;font-size:18px;padding:20px;border-radius:10px;z-index:9999;box-shadow:0 0 20px rgba(0,0,0,0.5)}
.mp-popup.hidden{display:none}
@keyframes flash{0%{background:#fff}50%{background:#ff0000}100%{background:#fff}}
body.mp-flash{animation:flash 1s ease-in-out 5;}
/* responsive */
@media (max-width:420px){.mp-map{width:280px;height:280px}}
