@import"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap";:root{--bg-primary: #0a0a0f;--bg-secondary: #141420;--card-bg: rgba(20, 20, 32, .85);--border-color: rgba(255, 255, 255, .08);--text-primary: #f1f1f4;--text-secondary: #a1a1b5;--text-muted: #5a5a72;--accent: #6366f1;--accent-dim: rgba(99, 102, 241, .15);--danger: #f87171;--success: #4ade80;--warning: #fbbf24}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html,body{height:100%;overflow-x:hidden}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;background:var(--bg-primary);color:var(--text-primary);line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#root{min-height:100vh;display:flex;flex-direction:column}body:before{content:"";position:fixed;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle at 30% 20%,rgba(99,102,241,.06) 0%,transparent 50%),radial-gradient(circle at 80% 80%,rgba(248,113,113,.04) 0%,transparent 50%);z-index:-1;pointer-events:none}::-webkit-scrollbar{width:6px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:var(--border-color);border-radius:3px}::-webkit-scrollbar-thumb:hover{background:var(--text-muted)}.app{flex:1;display:flex;flex-direction:column}.app__content{flex:1;padding:1.25rem;display:flex;flex-direction:column;gap:1.25rem;max-width:480px;margin:0 auto;width:100%}.power-section{display:flex;justify-content:center;padding:.5rem 0}.power-btn{width:64px;height:64px;border-radius:50%;border:2px solid var(--border-color);background:var(--bg-secondary);color:var(--text-secondary);font-size:1.5rem;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center}.power-btn:hover{border-color:var(--accent);color:var(--accent);box-shadow:0 0 20px #6366f133}.power-btn--active{border-color:var(--danger);background:#f871711a;color:var(--danger);box-shadow:0 0 20px #f8717133}.power-btn:disabled{opacity:.4;cursor:not-allowed}.error-banner{background:#f871711a;border:1px solid rgba(248,113,113,.3);border-radius:8px;padding:.75rem 1rem;color:#f87171;font-size:.85rem}.header{display:flex;justify-content:space-between;align-items:center;padding:1rem 1.25rem;background:var(--card-bg);border-bottom:1px solid var(--border-color);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);position:sticky;top:0;z-index:100}.header__brand{display:flex;align-items:center;gap:.75rem}.header__logo{font-size:1.75rem;line-height:1}.header__title{font-size:1.25rem;font-weight:700;color:var(--text-primary);letter-spacing:-.02em;margin:0}.header__subtitle{font-size:.7rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.1em;margin:0}.header__status{display:flex;align-items:center;gap:.5rem}.header__dot{width:10px;height:10px;border-radius:50%;transition:background .3s ease,box-shadow .3s ease}.dot--green{background:#4ade80;box-shadow:0 0 8px #4ade8099;animation:dot-pulse 2s ease-in-out infinite}.dot--red{background:#f87171;box-shadow:0 0 8px #f8717199;animation:dot-pulse .5s ease-in-out infinite}.dot--amber{background:#fbbf24;box-shadow:0 0 8px #fbbf2499;animation:dot-pulse 1s ease-in-out infinite}.dot--gray{background:#6b7280}@keyframes dot-pulse{0%,to{opacity:1}50%{opacity:.5}}.header__status-text{font-size:.8rem;font-weight:500;color:var(--text-secondary)}.orb-container{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:2rem 0}.orb{width:160px;height:160px;border-radius:50%;position:relative;display:flex;align-items:center;justify-content:center;transition:box-shadow .5s ease,background .5s ease}.orb__inner{width:100px;height:100px;border-radius:50%;background:inherit;filter:brightness(1.3);animation:orb-breathe 3s ease-in-out infinite}.orb--green{background:radial-gradient(circle at 40% 40%,#4ade80,#16a34a);box-shadow:0 0 40px #4ade8066,0 0 80px #4ade8026}.orb--red{background:radial-gradient(circle at 40% 40%,#f87171,#dc2626);box-shadow:0 0 40px #f8717180,0 0 80px #f8717140}.orb--gray{background:radial-gradient(circle at 40% 40%,#6b7280,#374151);box-shadow:0 0 20px #6b728033}.orb--amber{background:radial-gradient(circle at 40% 40%,#fbbf24,#d97706);box-shadow:0 0 40px #fbbf2466,0 0 80px #fbbf2426}@keyframes orb-breathe{0%,to{transform:scale(1);opacity:.9}50%{transform:scale(1.08);opacity:1}}.orb--pulse-alert{animation:orb-crisis-pulse .5s ease-in-out 4}@keyframes orb-crisis-pulse{0%,to{transform:scale(1)}50%{transform:scale(1.15)}}.orb__label{font-size:1.1rem;font-weight:600;color:var(--text-primary);letter-spacing:.05em;text-transform:uppercase}.orb__crisis-class{font-size:1.3rem;font-weight:700;color:#f87171;animation:fade-in .3s ease}@keyframes fade-in{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.room-selector{background:var(--card-bg);border:1px solid var(--border-color);border-radius:12px;padding:1.25rem;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.room-selector__label{display:block;font-size:.85rem;font-weight:600;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.75rem}.room-selector__presets{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:.75rem}.room-btn{padding:.5rem 1rem;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary);color:var(--text-primary);font-size:.9rem;font-weight:500;cursor:pointer;transition:all .2s ease}.room-btn:hover:not(:disabled){background:var(--accent-dim);border-color:var(--accent)}.room-btn--active{background:var(--accent);border-color:var(--accent);color:#fff;box-shadow:0 0 12px #6366f14d}.room-btn:disabled{opacity:.4;cursor:not-allowed}.room-btn--submit{background:var(--accent);color:#fff;border-color:var(--accent)}.room-selector__custom{display:flex;gap:.5rem}.room-input{flex:1;padding:.5rem .75rem;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary);color:var(--text-primary);font-size:.9rem;outline:none;transition:border-color .2s ease}.room-input:focus{border-color:var(--accent)}.room-input::placeholder{color:var(--text-muted)}.room-selector__current{margin-top:.75rem;font-size:.85rem;color:var(--text-secondary)}.room-selector__current strong{color:var(--accent)}.staff-alert{background:var(--card-bg);border:1px solid var(--border-color);border-radius:12px;padding:1.25rem;max-height:400px;overflow-y:auto;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.staff-alert--empty{text-align:center;padding:2rem 1.25rem}.staff-alert__empty-text{font-size:1rem;color:var(--text-secondary);margin-bottom:.25rem}.staff-alert__empty-sub{font-size:.8rem;color:var(--text-muted)}.staff-alert__title{font-size:.85rem;font-weight:600;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.75rem}.staff-alert__list{display:flex;flex-direction:column;gap:.5rem}.alert-card{display:flex;align-items:center;gap:.75rem;padding:.75rem;background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:8px;transition:all .3s ease}.alert-card--new{animation:alert-flash 1s ease;border-color:#f8717180;background:#f8717114}@keyframes alert-flash{0%{background:#f8717140;transform:scale(1.02)}to{background:#f8717114;transform:scale(1)}}.alert-card__icon{font-size:1.5rem;flex-shrink:0;width:40px;height:40px;display:flex;align-items:center;justify-content:center;background:#f871711a;border-radius:8px}.alert-card__content{flex:1;min-width:0}.alert-card__header{display:flex;justify-content:space-between;align-items:center;margin-bottom:.25rem}.alert-card__class{font-weight:600;color:#f87171;font-size:.95rem}.alert-card__confidence{font-size:.8rem;font-weight:700;color:#fbbf24;background:#fbbf241f;padding:.15rem .5rem;border-radius:20px}.alert-card__meta{display:flex;justify-content:space-between;font-size:.78rem;color:var(--text-muted)}.alert-card__room{font-weight:500}
