#vfcp-app{
    width:100%;
    padding:40px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:transparent;
}

#vfcp-app *{
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

.vfcp-box{
    width:100%;
    max-width:900px;
    background:#121212;
    border-radius:26px;
    padding:30px;
    color:#fff;
    box-shadow:0 12px 40px rgba(0,0,0,.45);
}

.vfcp-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
}

.vfcp-subtitle{
    text-align:center;
    color:#aaa;
    margin-top:10px;
    margin-bottom:30px;
}

.vfcp-dropzone{
    border:2px dashed #444;
    border-radius:20px;
    padding:60px 20px;
    text-align:center;
    background:#1b1b1b;
    cursor:pointer;
    transition:.3s;
}

.vfcp-dropzone.active,
.vfcp-dropzone:hover{
    border-color:#6c63ff;
    background:#202020;
}

#vfcp-input{
    display:none;
}

.vfcp-upload-icon{
    font-size:42px;
    margin-bottom:15px;
}

.vfcp-preview-area{
    display:none;
    margin-top:25px;
}

#vfcp-video{
    width:100%;
    border-radius:18px;
    background:#000;
}

.vfcp-controls{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:20px;
}

.vfcp-controls select,
.vfcp-controls button{
    padding:14px 18px;
    border:none;
    border-radius:14px;
    font-size:15px;
}

.vfcp-controls select{
    flex:1;
    min-width:180px;
    background:#222;
    color:#fff;
}

.vfcp-controls button{
    background:#6c63ff;
    color:#fff;
    cursor:pointer;
}

.vfcp-progress-wrap{
    width:100%;
    height:14px;
    margin-top:20px;
    background:#222;
    border-radius:50px;
    overflow:hidden;
}

.vfcp-progress{
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#6c63ff,#00d4ff);
}

.vfcp-status{
    margin-top:15px;
    color:#bbb;
}

.vfcp-download{
    display:none;
    margin-top:20px;
    background:#00a86b;
    color:#fff;
    text-decoration:none;
    padding:14px 20px;
    border-radius:14px;
}

@media(max-width:768px){

    .vfcp-controls{
        flex-direction:column;
    }

    .vfcp-controls select,
    .vfcp-controls button,
    .vfcp-download{
        width:100%;
        text-align:center;
    }

    .vfcp-title{
        font-size:26px;
    }

}
