/* ===========================
   L2MYTHODEA DOWNLOAD POPUP
=========================== */

.download-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    backdrop-filter:blur(4px);
}

.download-overlay.active{display:flex;}

.download-popup{
    width:460px;
    max-width:92%;
    background:#181818;
    border:1px solid #3d3220;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 0 40px rgba(0,0,0,.75);
    animation:popupShow .25s ease;
}

@keyframes popupShow{
    from{opacity:0;transform:translateY(20px) scale(.95);}
    to{opacity:1;transform:translateY(0) scale(1);}
}

.popup-header{
    padding:25px;
    text-align:center;
    background:#0f0f0f;
    border-bottom:1px solid #30271b;
}

.popup-header img{
    width:120px;
    margin-bottom:15px;
}

.popup-header h2{
    color:#fff;
    margin:0;
    font-size:24px;
}

.popup-body{padding:30px;}

.popup-body p{
    color:#bfbfbf;
    line-height:1.6;
    text-align:center;
    margin-bottom:20px;
}

.popup-input{
    width:100%;
    height:52px;
    border-radius:6px;
    border:1px solid #3f3f3f;
    background:#101010;
    color:#fff;
    font-size:16px;
    padding:0 15px;
    outline:none;
}

.popup-input:focus{
    border-color:#d8b15b;
}

.popup-button{
    width:100%;
    height:54px;
    margin-top:20px;
    border:0;
    cursor:pointer;
    border-radius:6px;
    font-size:16px;
    font-weight:bold;
    color:#fff;
    background:#c58d2c;
    transition:.2s;
}

.popup-button:hover{
    background:#dd9d31;
}

.popup-message{
    margin-top:18px;
    text-align:center;
    color:#d0d0d0;
    min-height:20px;
}

.popup-close{
    position:absolute;
    right:18px;
    top:15px;
    cursor:pointer;
    color:#999;
    font-size:26px;
}

.popup-close:hover{
    color:#fff;
}

.popup-footer{
    padding:18px;
    text-align:center;
    font-size:13px;
    color:#7d7d7d;
    border-top:1px solid #2d2d2d;
}
