/*=========================================
        FINAL SCREEN
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{

    overflow-x:hidden;

}

.explore{

    width:100%;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:80px 8%;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,#8B5CF6 0%,transparent 25%),
    radial-gradient(circle at bottom left,#5B21B6 0%,transparent 25%),
    linear-gradient(135deg,#14052C 0%,#22084A 45%,#090017 100%);

}

.explore::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    right:-180px;

    top:-180px;

    background:#7B2FF7;

    opacity:.15;

    border-radius:50%;

    filter:blur(150px);

}

.explore-container{

    width:100%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    position:relative;

    z-index:2;

}

/* LEFT */

.explore-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    margin-bottom:25px;

}

.explore-left h1{

    font-size:60px;

    color:#fff;

    line-height:1.15;

    margin-bottom:25px;

}

.explore-left h1 span{

    color:#A855F7;

}

.explore-left p{

    color:#D8D8E8;

    font-size:18px;

    line-height:1.9;

    margin-bottom:22px;

}

.quote-box{

    margin:35px 0;

    padding:25px;

    border-left:4px solid #7B2FF7;

    background:rgba(255,255,255,.06);

    border-radius:18px;

}

.quote-box i{

    color:#A855F7;

    font-size:28px;

    margin-bottom:15px;

}

.quote-box p{

    margin:0;

    color:#fff;

    font-size:19px;

    font-weight:500;

}

.explore-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.btn-primary{

    padding:17px 34px;

    border-radius:50px;

    text-decoration:none;

    background:linear-gradient(135deg,#7B2FF7,#5B21B6);

    color:#fff;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:10px;

}

.btn-secondary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:58px;

    padding:0 34px;

    border-radius:50px;

    border:2px solid #7B2FF7;

    color:#7B2FF7;

    background:#ffffff;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

/*=========================================
RIGHT SIDE
=========================================*/

.explore-right{

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    animation:fadeRight 1s ease;

}

.explore-right::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    background:#7B2FF7;

    border-radius:50%;

    opacity:.18;

    filter:blur(140px);

    z-index:-1;

}

.explore-right img{

    width:100%;

    max-width:720px;

    object-fit:contain;

    background:transparent;

    border:none;

    border-radius:30px;

    mix-blend-mode:screen;

    filter:
        drop-shadow(0 40px 90px rgba(123,47,247,.45));

    animation:float 6s ease-in-out infinite;

}

/*=========================================
RIGHT SIDE
=========================================*/

.explore-right{

    display:flex;
    justify-content:center;
    align-items:center;

    animation:fadeRight 1s ease;

}

/*=========================================
VIDEO CARD
=========================================*/

.video-card{

    width:100%;
    max-width:700px;
    height:460px;

    overflow:hidden;

    border-radius:28px;

    background:#1C1038;

    box-shadow:0 25px 60px rgba(123,47,247,.25);

    transition:.35s;

}

.video-card:hover{

    transform:translateY(-8px);

    box-shadow:0 35px 70px rgba(123,47,247,.35);

}

.video-card video{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    border-radius:28px;

}

/* FOOTER */

.explore-footer{

    text-align:center;

    color:#bbb;

    margin-top:40px;

    font-size:15px;

}

@keyframes float{

    0%{transform:translateY(0);}

    50%{transform:translateY(-15px);}

    100%{transform:translateY(0);}

}

@media(max-width:992px){

    .explore-container{

        grid-template-columns:1fr;
        gap:50px;
        text-align:center;

    }

    .explore-right{

        order:-1;

    }

    .video-card{

        max-width:650px;
        height:400px;
        margin:auto;

    }

    .explore-buttons{

        justify-content:center;
        flex-wrap:wrap;

    }

}

@media(max-width:768px){

    .video-card{

        height:320px;

    }

    .explore-buttons{

        flex-direction:column;
        align-items:center;

    }

    .btn-primary,
    .btn-secondary{

        width:280px;
        justify-content:center;

    }

}

@media(max-width:480px){

    .video-card{

        height:260px;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;
        max-width:280px;

    }

}