/* Chat Box */

#chat-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    height: 200px;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--neon-purple);
    display: flex;
    flex-direction: column;
    box-shadow:
        0 0 30px rgba(255, 0, 255, 0.4),
        inset 0 0 10px rgba(255, 0, 255, 0.1);
    z-index: 100;
}

#chat-msgs {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    font-size: 11px;
    color: var(--neon-cyan);
    font-family: 'Rajdhani', monospace;
}

#chat-input {
    background: rgba(0, 255, 255, 0.05);
    border: none;
    border-top: 2px solid var(--neon-purple);
    color: var(--neon-cyan);
    padding: 10px;
    outline: none;
    font-family: 'Rajdhani', monospace;
}

#chat-input::placeholder {
    color: var(--text-dark);
}
