.system-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    font-family: sans-serif;
}

.system-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: modalAppear 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalAppear {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.system-modal h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5rem;
}

.system-modal p {
    margin: 1.5rem 0;
    color: #555;
    line-height: 1.6;
}

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

.system-modal .btn {
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.system-modal .btn-primary {
    background: #d63384;
    color: white;
}

.system-modal .btn-primary:hover {
    background: #be185d;
    transform: translateY(-2px);
}

.system-modal .btn-secondary {
    background: #f1f3f5;
    color: #495057;
    border: 1px solid #dee2e6;
}

.system-modal .btn-secondary:hover {
    background: #e9ecef;
}
