/**
 * SNAPSMACK - Communications and hotkey HUD styles
 *
 * Help modals, notifications, and system hints overlays.
 */

/* ==========================================================================
   1. HELP MODAL - Backdrop and Panel
   ========================================================================== */

/* Backdrop — full screen overlay */
#snap-help-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    font-family: 'Courier Prime', 'Courier New', monospace;
    text-transform: uppercase;
}

/* Inner panel */
#snap-help-modal > div {
    min-width: 320px;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}

#snap-help-modal h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(204,204,204,0.3);
    padding-bottom: 10px;
    text-align: center;
}

.help-footer {
    margin-top: 25px;
    font-size: 0.7rem;
    text-align: center;
    opacity: 0.4;
    letter-spacing: 2px;
}

/* ==========================================================================
   2. HUD NOTIFICATIONS (Top Center Toasts)
   ========================================================================== */

.hud-msg {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: #39FF14;
    border: 1px solid #39FF14;
    padding: 15px 30px;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10000;
    transition: top 0.4s cubic-bezier(.2,.9,.2,1);
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hud-msg.show {
    top: 40px;
}

/* ==========================================================================
   3. HELP TOAST (Bottom Left)
   ========================================================================== */

#snap-help-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 12px 24px;
    background: rgba(0,0,0,0.8);
    color: #888;
    border: 1px solid #333;
    font-family: 'Courier Prime', monospace;
    font-size: 11px;
    z-index: 9999998;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}
