#popupRecargaOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#popupRecarga {
    background: #1e1e2f;
    width: 400px;
    max-width: 95%;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: popupShow 0.3s ease;
    color: white;
    font-family: Arial;
}

#popupRecarga h2 {
    margin-top: 0;
    color: #00bfff;
    text-align: center;
}

#popupRecarga input,
#popupRecarga select {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    background: #2b2b40;
    color: white;
}

#popupRecarga button {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(45deg, #00bfff, #0077ff);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

#popupRecarga button:hover {
    transform: scale(1.03);
}

#popupRecarga .fechar {
    background: #444;
}

@keyframes popupShow {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}