/* Custom Message Modal */
#custom-message-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Top most */
}

.message-content {
    background: rgba(20, 20, 20, 0.95);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #b026ff;
    box-shadow: 0 0 20px #b026ff;
    text-align: center;
    max-width: 80%;
    min-width: 300px;
    color: white;
    font-family: 'Roboto', sans-serif;
}

#custom-message-text {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.modal-btn {
    padding: 10px 20px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    transition: all 0.2s;
}

.modal-btn-primary {
    background: #b026ff;
    color: white;
    border: 1px solid #b026ff;
}

.modal-btn-primary:hover {
    background: #d46aff;
    box-shadow: 0 0 10px #b026ff;
}

.modal-btn-secondary {
    background: transparent;
    color: #ccc;
    border: 1px solid #777;
}

.modal-btn-secondary:hover {
    border-color: white;
    color: white;
}
