/*!
Theme Name: dep
Theme URI: http://underscores.me/
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dep
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}



body {
    font-family: 'muller', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    background: #000;
}


.container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 15px;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




/* FONTS */


@font-face {
    font-family: 'muller';
    src: url('assets/fonts/MullerRegular.ttf') format("truetype"),
         url('assets/fonts/MullerRegular.woff') format("woff"),
         url('assets/fonts/MullerRegular.woff2') format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'muller';
    src: url('assets/fonts/MullerMedium.ttf') format("truetype"),
         url('assets/fonts/MullerMedium.woff') format("woff"),
         url('assets/fonts/MullerMedium.woff2') format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'druk';
    src: url('assets/fonts/Druk Wide Cyr.ttf') format("truetype"),
         url('assets/fonts/Druk Wide Cyr.woff') format("woff"),
         url('assets/fonts/Druk Wide Cyr.woff2') format("woff2");
    font-weight: 700;
    font-style: normal;
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    height: 64px;
    font-family: 'druk';
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #fff;
    background: var(--purple-radial-gradient);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 700;
}

.btn:hover{
    background: radial-gradient(
        circle 200px at 50% 150%,
      #7300CC 27%,
      #A532FF 47%,
      #B95FFF 63%
    );;
}

.btn img{
    height: auto;
    max-height: 24px;
    width: 24px;
}

.btn.btn-fav{
    background: #00000012;
}

.btn.btn-fav:hover{
    background: #00000024;
}

.btn.btn-blue{
    background: var(--blue-gradient-horizontal);
    transition: all 0.2s ease;
}

.btn.btn-blue:hover{
    background: linear-gradient(
        to left,
        #00A1FF 0%,
        #00BFFF 100%
      );
}

.btn.btn-orange{
    
    transition: all 0.2s ease;
}

.btn.btn-orange img{
   
}

.btn.btn-orange:hover{
    background: linear-gradient(
        to left,
        #CC5800 0%,
        #FFA100 29%,
        #FFB73B 100%
      );
}

.btn-group{
    display: flex;
    gap: 20px;
}

a{
    color: inherit;
    text-decoration: none;
}

:root {
    --purple-radial-gradient: radial-gradient(
        circle 240px at 50% 150%,
      #7300CC 27%,
      #A532FF 47%,
      #B95FFF 63%
    );

    --blue-gradient-horizontal: linear-gradient(
      to right,
      #00A1FF 0%,
      #00BFFF 100%
    );
}


/* HEADER */

.header{
    position: absolute;
    padding: 20px 0;
    width: 100%;
    left: 0;
    top: 10px;
    z-index: 10;
}




/* PAGE */

.main{
    padding-bottom: 260px;
    background-image: url('/wp-content/uploads/2025/06/smoke-bg-bottom-scaled.webp');
    background-position: bottom left;
    background-size: contain;
    background-repeat: no-repeat;
}

.section-hero{
    background: url('/wp-content/uploads/2025/06/hero-bg.webp') no-repeat center center / cover;
    padding: 180px 0 60px 0;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    z-index: 1;
}

.section-hero .hero-content{
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: #fff;
}

.section-hero .hero-content .title{
    font-family: 'druk';
    font-size: 32px;
}

.section-hero .hero-content img{
    margin: 10px 0;
}

.section-hero .hero-content p{
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    opacity: 0.66;
}

.section-hero .hero-content .text-bigger{
    font-size: 24px;
    letter-spacing: 0.03em;
    color: #fff;
    font-weight: 700;
    opacity: 1;
}

.section-hero .hero-content .btn{
    margin-top: 40px;
}



.section-main{
    padding: 100px 0;
}

.section-main::before{
    content: '';
    position: absolute;
    right: 0;
    top: -42%;
    width: 100%;
    height: 100%;
    background: url('/wp-content/uploads/2025/06/smoke-bg-scaled.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 0;
}

.section-main .wrapper{
    align-items: flex-start;
    gap: 80px;
}

.section-main .left-col{
    width: 340px;
    min-width: 340px;
}

.section-main .left-col .announcement {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: radial-gradient(
        circle,
      #FFA100 0%,
      #ff95003b 100%
    );
    padding: 30px 50px;
    border-radius: 40px;
    font-family: 'druk';
    font-weight: 700;
}

.section-main .left-col .announcement .announcement-title{
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-align: center;
}

.section-main .left-col .announcement .announcement-date{
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: center;
}

.section-main .left-col .related{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
    background-color: #ffffff15;
    border: 1px solid #ffffff27;
    border-radius: 40px;
    margin-top: 40px;
}

.section-main .left-col .related .related-title {
    font-family: 'druk';
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-align: center;
    font-weight: 700;
}

.section-main .left-col .related .related-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
    text-align: center;
}

.section-main .left-col .related .related-list .related-item-title {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}


.section-main .left-col .related .related-list .subtitle {
    font-size: 16px;
    text-align: center;
    opacity: 0.66;
}


.section-main .middle-col{
    width: 100%;
}

.section-main .middle-col .video-block{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.section-main .middle-col .video-block .title{
    font-family: 'druk';
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.section-main .middle-col .video-block .video-player{
    margin-top: 20px;
}

.section-main .middle-col .video-block .poster{
    border-radius: 60px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-main .middle-col .video-block .video-player{
    width: 100%;
}

.section-main .middle-col .video-block .video-player::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/poster-overlay.png');
    z-index: 1;
}
.section-main .middle-col .video-block .video-player .play{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-image: url('assets/img/play-btn.svg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff80;
    border-radius: 50%;
    padding: 25px;
    border: 1px solid #ffffff83;
    cursor: pointer;
    transition: all 0.2s ease;
}

.section-main .middle-col .video-block .video-player .play:hover{
    transform: translate(-50%, -50%) scale(1.1);
}

.section-main .middle-col .video-block .video-player .name{
    position: absolute;
    bottom: 40px;
    left: 60px;
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #fff;
    background: linear-gradient(
        to right,
        #CC5800 0%,
        #FFA100 29%,
        #FFB73B 100%
    );
    padding: 20px 25px;
    border-radius: 50px;
    z-index: 2;
}

.section-main .middle-col .video-block .video-list{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.section-main .middle-col .video-block .video-list .video-item{
    width: calc(50% - 10px);
    position: relative;overflow: hidden;
	max-height: 1000px;
	transition: max-height 0.5s ease;
}

.section-main .middle-col .video-block .video-list .video-item.is-hidden {
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
	opacity: 0;
	pointer-events: none;
}



.section-main .middle-col .video-block .video-list .video-item .play{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-image: url('assets/img/play-btn.svg');
    background-size: 45px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff80;
    border-radius: 50%;
    padding: 15px;
    border: 1px solid #ffffff83;
    cursor: pointer;
    transition: all 0.2s ease;
}

.section-main .middle-col .video-block .video-list .video-item.unavailable .play{
    background-image: url('assets/img/lock.svg');
}

.section-main .middle-col .video-block .video-list .video-item .play:hover{
    transform: translate(-50%, -50%) scale(1.1);
}

.section-main .middle-col .video-block .video-list .video-item .name{
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #fff;
    background: linear-gradient(
        to right,
        #CC5800 0%,
        #FFA100 29%,
        #FFB73B 100%
    );
    padding: 10px 15px;
    border-radius: 50px;
    z-index: 2;
}

.section-main .middle-col .video-block .video-list .video-item .poster{
    border-radius: 50px;
}

.section-main .middle-col .video-block .load-more{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    width: 100%;
    background-color: #ffffff06;
    border-radius: 15px;
    border-top: 2px solid #FFA100;
    border-left: 1px solid #ffa200;
    border-right: 1px solid #ffa200;
    cursor: pointer;
    transition: all 0.2s ease;
}

.section-main .middle-col .video-block .load-more:hover{
    background-color: #ffffff15;
}

.section-main .middle-col .video-block .video-block-description{
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.66;
    margin-top: 20px;
}

.section-main .right-col{
    min-width: 300px;
    width: 300px;
}



.section-main .right-col .rating{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-main .right-col .rating .rating-title {
    font-family: 'druk';
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-align: center;
    font-weight: 700;
}

.section-main .right-col .rating .rating-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: #ffffff06;
    border-radius: 50px;
    border-top: 2px solid #FFA100;
    border-left: 1px solid #ffa200;
    border-right: 1px solid #ffa200;
    padding: 50px 25px;
    margin-top: 20px;
}

.section-main .right-col .rating .rating-list .rating-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
	opacity: 0.3;
	cursor: pointer;
}

.section-main .right-col .rating .rating-list .rating-item.active{
	opacity: 1;
}

.section-main .right-col .rating .rating-list .rating-item img{
	margin: 10px;
}

.section-main .right-col .rating .rating-list .rating-item-name {
    font-family: 'druk';
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    text-align: center;
}

.section-main .right-col .downloads{
    border-radius: 50px;
    border-top: 2px solid #FFA100;
    border-left: 1px solid #ffa200;
    border-right: 1px solid #ffa200;
    padding: 50px 20px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}


.downloads:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: #161616f2;
    filter: blur(30px);
}


.section-main .right-col .downloads .downloads-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.section-main .right-col .downloads .downloads-title .downloads-title-text{
    font-family: 'druk';
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
}


.section-main .right-col .downloads .downloads-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-main .right-col .downloads .downloads-list .download-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background-color: #ffffff06;
    border-radius: 50px;
    border-top: 2px solid #FFA100;
    border-left: 1px solid #ffa200;
    border-right: 1px solid #ffa200;
    padding: 14px 15px;
    width: 100%;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.section-main .right-col .downloads .downloads-list .download-item:hover{
    background-color: #ffffff15;
}

.section-main .right-col .downloads .downloads-list .download-item span{
	width: 130px;
}

.section-main .characters{
    display: flex;
    align-items: center;
    gap: 80px;
}

.section-main .characters .item-big{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 40%;
}

.section-main .characters .item-big .avatar::before{
    content: '';
    position: absolute;
    top: 60px;
    left: -40px;
    width: calc(100% + 80px);
    height: calc(100% - 120px);
    background: linear-gradient(
        to top,
        #CC5800 0%,
        #FFA100 29%,
        #FFB73B 100%
    );
    border-radius: 50px;
    box-shadow: 0 0 24px 2px #FFD99935;
}

.section-main .characters .item-big .name{
    font-family: 'druk';
    font-size: 52px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center;
}

.section-main .characters .item-big .desc{
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.66;
    text-align: center;
}

.section-main .characters .items{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.section-main .characters .items .item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 45px;
    position: relative;
}




@media (max-width:768px) {
    .section-main .characters .items .item {
        flex-wrap: wrap;
        justify-content: center;
    }}

.section-main .characters .items .item .avatar::before{
    content: '';
    position: absolute;
    bottom: 8px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% - 80px);
    background: linear-gradient(
        to top,
        #141414 0%,
        #3F3F3F 29%,
        #8A8A8A 100%
    );
    border-radius: 50px;
}

.section-main .characters .items .item .name{
    font-family: 'druk';
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
}

.section-main .characters .items .item .desc{
    font-size: 10px;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.66;
    text-align: center;
}



/* FOOTER */

.footer{
    position: absolute;
    bottom: 140px;
    width: 100%;
}

.footer .disclaimer{
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
    opacity: 0.66;
    max-width: 250px;
}

.footer .btn-fav{
    background: #ffffff06;
    border: 1px solid #ffffff10;
}

.footer .btn-fav:hover{
    background: #0000002d;
}



@media (max-width: 1024px) {
    
    .header .logo{
        width: 100px;
        margin-right: 20px;
    }

    .header .logo img{
        width: 100%;
        display: block;
    }

    .btn{
        font-size: 14px;
        padding: 10px 15px;
        height: 50px;
		width: 163px;
    }

    .btn-group{
        gap: 10px;
    }

    .btn img{
        height: auto;
        max-height: 18px;
        width: 18px;
    }

    .section-hero{
        background: url('/wp-content/uploads/2025/06/hero-bg-1.webp') no-repeat center left -320px / cover;
    }

    .section-hero .hero-content{
        max-width: 400px;
    }
    
    .section-hero .hero-content img{
      /*   width: 100%; */
        width: 293px;
        height: 111px;
    }

    .section-hero .hero-content .title{
        min-height: 33px;
        font-size: 24px;
        display: block;
    }

    .section-hero .hero-content .text-bigger{
        font-size: 16px;
    }

    .section-hero .hero-content p{
        font-size: 14px;
        line-height: 1.4;
    }

    .section-main .wrapper{
        gap: 40px;
    }

    .section-main .wrapper{
        flex-wrap: wrap;
    }

    .section-main .left-col{
        order: 2;
        width: calc(50% - 20px);
    }

    .section-main .middle-col{
        order: 1;
    }
    
    .section-main .right-col{
        order: 3;
        width: calc(50% - 20px);
        margin-top: 10px;
    }

    .section-main .characters{
        gap: 20px;
        padding: 0 20px;
        margin: 60px 0;
    }

    .footer{
        bottom: 100px;
    }

    .footer .wrapper{
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer .logo{
        width: 100px;
    }

    .footer .logo img{
        width: 100%;
    }

    .footer .btn-group{
        gap: 10px;
        width: 100%;
        justify-content: space-between;
        margin: 20px 0;
    }

    .footer .disclaimer{
        font-size: 12px;
        max-width: 70%;
        text-align: center;
        margin: 0 auto;
    }
    
}


@media (max-width: 768px) {
    
    .header .btn{
        font-size: 0;
        gap: 0;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .btn img{
        max-height: 24px;
        width: 24px;
        margin-left: -2px;
    }

    .main{
        padding-bottom: 300px;

    }

    .section-hero{
        padding: 110px 0 40px 0;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        background: linear-gradient(45deg, black, transparent), url(/wp-content/uploads/2025/06/hero-bg-1.webp) no-repeat center left -617px / cover;
    }

    .section-hero .hero-content{
        max-width: 100%;
    }

    .section-main{
        padding: 40px 0;
    }

    .section-main .middle-col .video-block .poster{
        border-radius: 30px;
    }


    .section-main .middle-col .video-block .video-list .video-item .poster{
        border-radius: 25px;
    }

    .section-main .middle-col .video-block .video-player .name{
        font-size: 20px;
        padding: 10px 15px;
        border-radius: 15px;
        bottom: 15px;
        left: 20px;
    }

    .section-main .middle-col .video-block .video-player .play{
        width: 80px;
        height: 80px;
        background-size: 60px;
    }

    .section-main .middle-col .video-block .video-list .video-item .name{
        font-size: 12px;
        padding: 7px 10px;
        border-radius: 12px;
        bottom: 0px;
        left: 0px;
    }

    .section-main .middle-col .video-block .video-list .video-item .play{
        width: 35px;
        height: 35px;
        background-size: 25px;
    }

    
    

    .section-main .characters{
        flex-direction: column;
        padding: 0 20px;
        margin: 40px 0;
    }

    .section-main .characters .item-big{
        width: 100%;
    }

    .section-main .characters .item-big .avatar{
        height: 300px;
    }
    
    .section-main .characters .item-big .avatar img{
        height: 100%;
    }

    .section-main .characters .item-big .avatar::before{
        top: 50px;
        height: calc(100% - 80px);
    }

    .section-main .characters .item-big .name{
        font-size: 30px;
    }

    .section-main .characters .items{
        width: 100%;
    }

    .section-main .characters .items .item .avatar{
        height: 200px;
    }

    .section-main .characters .items .item .avatar img{
        height: 100%;
        display: block;
        object-fit: contain;
        margin: 0 auto;
    }

    .section-main .characters .items .item .avatar::before{
        height: calc(100% - 40px);
        bottom: 0px;
        border-radius: 30px;
    }

    .section-main .characters .items .item .name{
        font-size: 24px;
        margin-top: 20px;
    }

    .section-main .characters .items .item .desc{
        font-size: 12px;
    }

    .section-main .left-col{
        width: 100%;
    }

    .section-main .right-col{
        width: 100%;
    }

    .footer{
        bottom: 25px;
    }

    .footer .btn-group{
        flex-wrap: wrap;
        justify-content: center;
        max-width: 340px;
        margin: 25px auto;
    }

    
}


.desc p {
    font-size: 18px;
    text-align: start;
}


.avatar {
    width: 195px;
}


img.drago {
    position: relative;
    left: -27px;
}

img.zeus {
    width: 250px;
    position: relative;
    left: -30px;
    bottom: -10px;
}


@media (max-width: 768px) {
    .footer .btn-fav {
        width: 100%;
    }}




    .avatar {

        transition: .3s;
    }



.avatar:hover {
    transform: scale(1.05);
    transition: .3s;
}

.hero-text {
    background: #00000012;
    padding: 25px;
    border-radius: 50px;
}


/* Modal START */


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
}
.modal-content {
    background: white;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 1000px;
    border-radius: 8px;
    position: relative;
}
.close {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 35px;
    cursor: pointer;
    color: #000;
    z-index: 100;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #f0f0f0;
}
#iframeContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.reload-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
}



.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-image: url('assets/img/play-btn.svg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff80;
    border-radius: 50%;
    padding: 25px;
    border: 1px solid #ffffff83;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  iframe {
    width: 100%;
    height: 100%;
}
  /* Modal END */