.scryer-hero{
    min-height:auto !important;
    padding:90px 20px 70px !important;
}

.scryer-hero .vxd-hero-inner{
    max-width:1100px;
    margin:auto;
}

.vsx-search{
    width:95% !important;
    max-width:900px !important;
    margin:45px auto 0 !important;
    display:flex !important;
    align-items:center;
    overflow:hidden;
    border-radius:60px;
    background:linear-gradient(145deg,rgba(10,15,30,.96),rgba(25,15,45,.90));
    border:1px solid rgba(160,120,255,.35);
    box-shadow:0 0 45px rgba(130,80,255,.25), inset 0 0 25px rgba(255,255,255,.05);
}

.vsx-select{
    height:66px;
    min-width:180px;
    padding:0 20px;
    border:0;
    outline:0;
    background:rgba(255,255,255,.06);
    color:white;
    font-size:15px;
    cursor:pointer;
}

.vsx-select option{
    background:#111827;
    color:white;
}

.vsx-input{
    flex:1;
    height:66px;
    padding:0 28px;
    border:0 !important;
    outline:0 !important;
    background:transparent !important;
    color:white !important;
    font-size:18px;
    box-shadow:none !important;
}

.vsx-input::placeholder{
    color:rgba(255,255,255,.45);
}

.vsx-button{
    width:150px;
    height:66px;
    border:0;
    background:linear-gradient(135deg,#7d45ff,#244bff);
    color:white;
    font-weight:900;
    letter-spacing:2px;
    cursor:pointer;
    transition:.25s;
}

.vsx-button:hover{
    filter:brightness(1.25);
    box-shadow:0 0 25px rgba(130,80,255,.8);
}

.vsx-loading{
    display:none;
    margin:50px auto;
    text-align:center;
}

.vsx-orb{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    border:4px solid rgba(120,80,255,.35);
    border-top-color:white;
    animation:vsx-spin 1s linear infinite;
}

@keyframes vsx-spin{
    to{
        transform:rotate(360deg);
    }
}

.vsx-results{
    max-width:1100px;
    margin:auto;
}

.vsx-status{
    text-align:center;
    margin:30px auto;
}

.vsx-panel{
    position:relative;
    margin:28px auto;
    padding:32px;
    border-radius:28px;
    background:linear-gradient(150deg,rgba(15,20,40,.96),rgba(5,10,20,.96)) !important;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.vsx-panel::after{
    content:"🜁";
    position:absolute;
    right:25px;
    top:15px;
    font-size:65px;
    opacity:.04;
}

.vsx-domain{
    opacity:.75;
    margin-bottom:12px;
    font-size:14px;
}

.vsx-title{
    color:white;
    text-decoration:none;
}

.vsx-title:hover{
    text-decoration:underline;
}

.vsx-url{
    display:block;
    margin:18px 0;
    color:#8fd3ff !important;
    font-family:Consolas,monospace;
    font-size:14px;
    word-break:break-all;
    opacity:.85;
}

.vsx-snippet{
    line-height:1.6;
    opacity:.82;
}

.vsx-meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:20px;
}

.vsx-meter{
    height:8px;
    margin-top:25px;
    overflow:hidden;
    border-radius:30px;
    background:rgba(255,255,255,.12);
}

.vsx-meter span{
    display:block;
    height:100%;
    border-radius:30px;
    background:linear-gradient(90deg,#7d45ff,white);
}

.vsx-open{
    display:inline-flex;
    margin-top:22px;
    padding:11px 17px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#9fd4ff;
    text-decoration:none;
    font-weight:800;
}

.vsx-open:hover{
    color:white;
    background:rgba(125,69,255,.35);
}

.vsx-pages{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin:50px 0;
}

.vsx-pages button{
    padding:10px 17px;
    border:0;
    border-radius:25px;
    background:rgba(255,255,255,.08);
    color:#9fd4ff;
    cursor:pointer;
}

.vsx-pages button.active{
    background:#7646ff;
    color:white;
}

@media(max-width:750px){

    .vsx-search{
        flex-direction:column;
        border-radius:32px;
    }

    .vsx-select,
    .vsx-input,
    .vsx-button{
        width:100%;
        height:32px;
        text-align:center;
    }

    .vsx-panel{
        padding:32px;
    }
}

@media(max-width:750px){

    .vsx-input,
    .vsx-select,
    .vsx-button{
        font-size:24px;
    }

}