@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Roboto:wght@100;300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: #18181b;
    max-width: 1440px;
    margin: auto;
}


/**********header**********/

header {
    position: fixed;
    top: 0;
    width: 95%;
    height: 70px;
    background: transparent;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    z-index: 10000012323111;
    padding: 0 2.5%;
}

select {
    padding: 5px;
    font-size: 20px;
    outline: none;
    width: 120px;
    border-radius: 5px;
    background: #18181b;
    border: 1px solid #fff;
    color: #ff7000;

}

select option {
    font-size: 18px;
}



#click,
.bar-container {
    display: none;
}

header .menu-container {
    display: flex;
    list-style: none;
    color: #fff;
    font-size: 20px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}


header ul {
    display: flex;
    list-style: none;
    color: #fff;
    font-size: 18px;
    width: 80%;
    justify-content: space-around;
}

header li {
    transition: .3s;
    cursor: pointer;
}

header li:hover {
    margin-top: -5px;
}

header ul .active {
    color: #ff7000;
}

header ul a {
    text-decoration: none;
    color: #fff;
}

header .a {
    display: flex;
    justify-content: center;
    text-decoration: none;
}

header a h3 {
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 16px;
    border-radius: 15px;
    font-size: 16px;
}

header a h3:nth-child(2) {
    border: none;
    background: #ff7000;
}


/***************search***************/


.search {
    display: flex;
    width: 95%;
    flex-direction: column;
    margin: auto;
    margin-top: 5rem;
    position: relative;
}

.search-input {
    position: relative;
    width: 100%;
    height: 45px;
    opacity: .9;
    display: flex;
    color: gray;
    z-index: 1111111111;
}

hr {
    width: 95%;
    margin: auto;
    margin-bottom: 50px;
    margin-top: 100px;
}

.search input {
    width: 100%;
    border: .5px solid darkgray;
    border-radius: 25px;
    outline: none;
    padding: 0 36px;
    font-size: 20px;
    font-weight: 600;
    color: #18181b;
    height: 100%;
    background: #ddd;
}


.search i {
    position: absolute;
    top: 50%;
    left: 1.5%;
    transform: translate(-1.5%, -50%);
    cursor: pointer;
}

.searched-movies {
    width: calc(100% - 30px);
    background: transparent;
    position: absolute;
    top: 50%;
    z-index: 111111111;
    backdrop-filter: blur(10px);
    list-style: none;
    display: none;
    flex-direction: column;
    padding: 45px 10px;
    border-radius: 0 0 30px 30px;
    border-left: 5px solid #000;
    border-right: 5px solid #000;
    border-bottom: 5px solid #000;
}


.searched-movies hr {
    margin: 10px 0;
    padding: 0;
    width: 100%;
}

.filtered-movie {
    display: flex;
    justify-content: start;
    color: #fff;
    height: 250px;
}

.about-container {
    display: flex;
    flex-direction: column;
    padding: 10px;
    overflow: auto;
}

.name-container {
    display: flex;
    justify-content: start;
    align-items: center;
}

.name-container a {
    text-decoration: none;
    color: #fff;
    font-size: 32px;
}

.name-container h4 {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
}

.about-container p {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

.filtered-movie img {
    width: 30%;
    height: 100%;
    border-radius: 20px 0 0 20px;
}


.nothing-found {
    font-size: 50px;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/*****************first slider*******************/

.first-slider {
    width: 95%;
    direction: ltr;
    margin: 30px auto;
}


.first-slider .item {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
}


.posters {
    width: 100%;
    height: 100%;
}


.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 50px;
    height: 50px;
    background: #ff7000 !important;
    color: #000 !important;
    border-radius: 50% !important;
    font-size: 30px !important;
    opacity: 0;
    transition: all .3s;
    text-align: center;
}

.owl-prev {
    left: 1%;
}

.owl-next {
    right: 1%;
}

.owl-dots {
    position: absolute;
    top: 98%;
    left: 50%;
    transform: translate(-50%, -98%);
}

.active span {
    background: #ff7000 !important;
    width: 18px !important;
    transition: .3s !important;
}

.first-slider:hover .owl-prev,
.first-slider:hover .owl-next {
    opacity: 1;
    box-shadow: 0 0 8px #ff7000;
    font-weight: bold;
    text-shadow: 0 0 1px;
}

/*****************reflected text*******************/


.reflected {
    margin: auto;
    width: 95%;
    padding: 10px;
}

.reflected>* {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(60deg, #ff8d00, #ff7000, #ca6f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reflected> :last-child {
    transform:
        rotateX(180deg) translateY(13px) skewX(330deg) translateX(1%);
    mask-image: linear-gradient(transparent 50%, #ff7000 90%);
    -webkit-mask-image: linear-gradient(transparent 50%, #ff7000 90%);
    opacity: .7;
    margin-top: 10px;
}


/****************second slider******************/


.second-slider {
    width: 95%;
    margin: auto;
    height: 380px;
    position: relative !important;
}

.second-slider .item {
    width: 100%;
    background: red;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
}

.second-slider .item img {
    width: 100%;
    height: 100%;
}

.second-slider .item a {
    position: absolute;
    top: 86%;
    left: 50%;
    transform: translate(-50%, -86%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background: linear-gradient(60deg, #ff8d00, #ff7000, #ca6f00);
    padding: 6px 18px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    transition: all .5s;
    z-index: 5;
}

.second-slider .item a i {
    border: 2px solid #ff70;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.second-slider .item a h3 {
    margin-right: 5px;
}

.second-slider .item:hover a {
    margin-top: -10px;
    box-shadow: 0 0 8px #ff7000;
    background: linear-gradient(260deg, #ff8d00, #ff7000, #ca6f00);
}

.second-slider .item:hover i {
    border: 2px solid #fff;
}

.second-slider .owl-prev,
.second-slider .owl-next {
    opacity: 1;
    font-size: 42px !important;
    text-shadow: 0 0 1px;
    top: 60%;
}

.second-slider .owl-prev {
    left: -1%;
    border-radius: 30px 0px 45px 30px !important;
}

.second-slider .owl-next {
    right: -1%;
    border-radius: 0 30px 30px 45px !important;
}

.second-slider .owl-next::after {
    content: '';
    width: 64%;
    height: 10px;
    background: #ff7000;
    position: absolute;
    bottom: 100%;
    left: 0;
    border-radius: 5px 0 0;
}

.second-slider .owl-next::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 8px;
    background: #000;
    bottom: 100%;
    left: 4%;
    z-index: 2;
    border-radius: 15px 0 0 30px;
}

.second-slider .owl-prev::after {
    content: '';
    width: 63%;
    height: 10px;
    background: #ff7000;
    position: absolute;
    bottom: 100%;
    right: 0;
    border-radius: 0 5px 0 0;
}

.second-slider .owl-prev::before {
    content: '';
    position: absolute;
    width: 58%;
    height: 8px;
    background: #000;
    bottom: 100%;
    right: 4%;
    z-index: 2;
    border-radius: 0 15px 30px 0;
}





/**********************suggesed movies*************************/


.movies {
    width: 95%;
    margin-top: 20px;
    margin: auto;
}

.movies article {
    width: 75%;
    height: 480px;
    background: #000;
    border-radius: 20px;
    margin-bottom: 100px;
    position: relative;
    border-right: 50px solid #18181b;
    opacity: .8;
    box-shadow: 0 0 18px #18181b;
}

.movies article .back-download {
    position: absolute;
    top: 100%;
    left: 15%;
    transform: translate(-15%, -50%) rotateZ(45deg);
    background: #18181b;
    width: 80px;
    height: 80px;
    border-radius: 10px 0 0;
    z-index: 10;
}

.movies article .download {
    position: absolute;
    top: 10%;
    left: 10%;
    transform: translate(-10%, -10%) rotateZ(45%);
    background: #ff7000;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 12px #ff7000;
}

.movies article .download i {
    transform: rotateZ(-45deg) translate(0, -12%);
}

.movies article img {
    width: 35%;
    height: 95%;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-5%, -50%);
    border-radius: 0 20px 20px 0;
}

.hidden {
    opacity: 0;
    transform: translateY(100px);
    filter: blur(5px);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: none;
    transform: translateY(0);
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}

#main {
    width: 95%;
    height: 95%;
    background: #ff7000;
    margin: auto;
    transform: translateY(2.5%);
    border-radius: 10px 0 0 10px;
}

.score {
    position: absolute;
    top: 10%;
    left: 5%;
    transform: translate(-15%, -10%);
    background: transparent;
    width: 15%;
    height: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    color: #fff;
}

#hr {
    margin: 0;
    border: none;
    background: #fff;
    height: 1px;
}

.score h1 {
    font-size: 14px;
}

.score h1 span {
    font-size: 24px;
    color: #000;
}

.score i {
    font-size: 60px;
    background: #ffc400;
    color: #000;
    border-radius: 8px;
    height: 56px;
}

.about {
    direction: rtl;
    color: #fff;
}

.about h1 {
    font-size: 30px;
    color: #000;
    padding: 10px;
}

.about h2 i {
    padding: 10px;
    color: #000;
}

.about h2 {
    font-size: 16px;
}

.story {
    font-size: 17.5px;
    padding: 0 20px;
}

/*************updated movies****************/


#updated {
    width: 95%;
    margin: auto;
    display: flex;
    margin-bottom: 100px;
    justify-content: space-between;
}

#updated a {
    text-decoration: none;
    color: #fff;
}

#updated article {
    width: 49%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    height: 180px;
}

#updated article div {
    background: gray;
    width: 100%;
    height: 25%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

#updated article img {
    width: 100%;
    height: 80%;
}

#updated div h1 span {
    background: #ff7000;
    width: 30px;
    display: inline-block;
    border-radius: 50%;
}

#updated div h1 strong {
    text-decoration: line-through;
}

.hidden2 {
    opacity: 0;
    transition: all 1s;
    transform: translateX(-100%);
    filter: blur(5px);
}

.show2 {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.logo:nth-child(1) {
    transition-delay: 200ms;
}

.logo:nth-child(2) {
    transition-delay: 400ms;
}

/*************footer**************/



footer {
    background: gray;
    width: 95%;
    height: max-contant;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    padding: 10px 2.5%;
    margin-bottom: 0;
}

footer article {
    display: flex;
    margin-top: 20px;
    width: 48%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#telegram,
#instagram {
    display: flex;
    align-items: center;
    width: 100%;
    background: #18181b;
    border-radius: 20px;
    overflow: hidden;
    height: 100px;
    margin-top: 10px;
    justify-content: space-around;
}

#telegram h3,
#instagram h3 {
    font-size: 20px;
    margin-left: 80px;
    color: #ff7000;
}

#telegram i,
#instagram i {
    font-size: 60px;
    color: #ff7000;
    margin-right: 100px
}

footer section a {
    font-size: 25px;
    color: #fff;
    margin-top: 10px;
    transition: .5s;
    text-decoration: none;
    display: block;
}

footer section a:hover {
    color: #ff7000;
}


@media screen and (min-width:980px) {
    .item {
        height: 500px;
    }
}

@media screen and (min-width:1250px) {
    .item {
        height: 580px;
    }

    .second-slider {
        height: 450px;
    }

    .second-slider .item {
        height: 450px;
    }
}


@media screen and (max-width: 768px) {

    /* Header */
    .menu-container {
        background: #18181b;
        width: 100%;
        height: 120vh;
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        top: 4.5rem;
        left: -100%;
        z-index: 111111111;
    }

    .menu-container ul {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .menu-container ul li {
        margin-top: 1.5rem;
    }

    .menu-container .a {
        flex-direction: column;
        align-items: center;
        margin-bottom: 50rem;
    }

    .menu-container .a h3 {
        margin-top: 1rem;
        font-size: 12px;
        width: 100%;
    }

    .bar-container {
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
    }

    #click:checked~.menu-container {
        left: 0%;
        transition: all 0.3s ease;
    }

    /* Search */

    .search-input {
        font-size: 1rem;
        height: 40px;
    }

    .search input {
        font-size: .8rem;
        padding: 0 1.8rem;
    }

    /* reflected */

    .reflected>* {
        font-size: 2rem;
    }

    .movies article {
        width: 100%;
        border-radius: 20px;
        border-right: none;
    }

    .movies article img {
        display: none;
    }

    #main {
        border-radius: 10px;
    }

    #updated {
        display: flex;
        margin-bottom: 0;
        flex-direction: column;
    }

    #updated article {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        height: 150px;
    }

    footer article {
        width: 40%;
        align-items: center;
    }

    #telegram h3,
    #instagram h3 {
        font-size: 16px;
        margin-left: 80px;
        color: #ff7000;
    }

    #telegram i,
    #instagram i {
        font-size: 40px;
        color: #ff7000;
        margin-right: 90px;
        margin-left: 10px;
    }

    footer section a {
        font-size: 18px;
    }

}


@media screen and (max-width: 600px) {
    .first-slider .item {
        height: 350px;
    }

    .second-slider .item {
        height: 280px;
    }

    .bar-container {
        margin-right: 10px;
    }

    .movies article {
        margin-bottom: 60px;
    }

    .score {
        height: 25%;
        width: 20%;
        top: 12%;
    }

    .score h1 span {
        font-size: 20px;
        color: #000;
    }

    .score i {
        font-size: 40px;
        background: #ffc400;
        color: #000;
        border-radius: 4px;
        height: 36px;
    }

    .about h2 {
        font-size: 14px;
    }

    .story {
        font-size: 16px;
        padding: 0 20px;
    }

    footer article {
        width: 35%;
        height: 150px;
    }

    #telegram h3,
    #instagram h3 {
        font-size: 14px;
        margin-left: 80px;
        color: #ff7000;
    }

    #telegram i,
    #instagram i {
        font-size: 30px;
        color: #ff7000;
        margin-right: 90px;
        margin-left: 10px;
    }

    footer section a {
        font-size: 16px;
    }

}


@media screen and (max-width: 450px) {

    .search input {
        margin-left: -.2rem;
    }

    .filtered-movie {
        height: 200px;
    }

    .about-container {
        padding: 0 10px;
    }

    .name-container a {
        font-size: 22px;
    }

    .about-container p {
        font-size: 14px;
    }

    .nothing-found {
        font-size: 35px;
    }

    .reflected>* {
        font-size: 1.5rem;
    }

    .first-slider .item {
        height: 260px;
    }

    .owl-prev,
    .owl-next {
        width: 30px;
        height: 30px;
        font-size: 1rem !important;
    }

    hr {
        margin-top: 50px;
        margin-bottom: 25px;
    }

    .second-slider {
        height: 220px
    }

    .second-slider .item {
        height: 220px
    }

    .second-slider .item a {
        font-size: 12px;
        padding: 1px 6px;
    }

    .second-slider .item a i {
        width: 20px;
        height: 20px;
    }

    .second-slider .owl-prev,
    .second-slider .owl-next {
        font-size: 20px !important;
    }

    .movies {
        width: 90%;
    }

    article .back-download {
        width: 60px !important;
        height: 60px !important;
    }

    article .download {
        width: 50px !important;
        height: 50px !important;
        font-size: 30px !important;
    }

    .score {
        height: 15%;
    }

    .score h1 {
        font-size: 12px;
    }

    .score i {
        display: none;
    }

    .about h1 {
        font-size: 20px;
        color: #000;
        padding: 10px;
    }

    .about h2 {
        z-index: 100;
    }

    .story {
        font-size: 14px;
        padding: 0 20px;
    }

    #updated article div {
        font-size: 12px;
    }

    footer article {
        width: 35%;
        height: 150px;
    }

    #telegram h3,
    #instagram h3 {
        font-size: 12px;
        margin-left: 80px;
        color: #ff7000;
    }

    #telegram i,
    #instagram i {
        font-size: 30px;
        color: #ff7000;
        margin-right: 90px;
        margin-left: 10px;
    }

    footer section a {
        font-size: 14px;
    }
}

@media screen and (max-width: 350px) {

    .filtered-movie {
        height: 160px;
    }

    .name-container a {
        font-size: 18px;
    }

    .about-container p {
        font-size: 12px;
    }

    .nothing-found {
        font-size: 26px;
    }

    .first-slider .item {
        height: 220px
    }

    .reflected>* {
        font-size: 1.5rem;
    }

    .owl-prev,
    .owl-next {
        width: 30px;
        height: 30px;
        font-size: 1rem !important;
    }

    hr {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .second-slider .item {
        height: 180px
    }

    .second-slider .item a {
        font-size: 12px;
        padding: 1px 6px;
    }

    .second-slider .item a i {
        width: 15px;
        height: 15px;
        font-size: .5rem;
    }

    .second-slider .owl-prev,
    .second-slider .owl-next {
        font-size: 20px !important;
    }

    .score {
        height: 15%;
        top: 9%;
        width: 30%
    }

    .score h1 {
        font-size: 12px;
    }

    .score i {
        display: none;
    }

    .about h1 {
        font-size: 20px;
        color: #000;
        padding: 10px;
    }

    .story {
        font-size: 14px;
        padding: 0 20px;
    }

    #updated article div {
        font-size: 12px;
    }

    footer article {
        width: 35%;
        height: 120px;
    }

    #telegram,
    #instagram {
        border-radius: 10px;
    }


    #telegram h3,
    #instagram h3 {
        font-size: 10px;
        margin-left: 80px;
    }

    #telegram i,
    #instagram i {
        font-size: 20px;
        color: #ff7000;
        margin-right: 90px;
        margin-left: 10px;
    }

    footer section a {
        font-size: 12px;
    }
}

@media screen and (max-width: 280px) {

    header {
        height: 50px;
    }

    select {
        padding: 5px;
        font-size: 14px;
        outline: none;
        width: 100px;
        border-radius: 1px;

    }

    select option {
        font-size: 14px;
    }

    .bar-container {
        font-size: 1rem;
        margin-right: 10px;
    }

    .menu-container {
        top: 3.2rem;
    }

    .score h1 {
        font-size: 12px;
    }

    .about h1 {
        font-size: 16px;
    }

    .about h2 {
        font-size: 12px;
    }

    .story {
        font-size: 10px;
    }

    #updated article {
        height: 120px;
    }

    #updated article div {
        font-size: 10px;
    }

    #telegram h3,
    #instagram h3 {
        font-size: 8px;
        margin-left: 80px;
    }

    footer section a {
        font-size: 10px;
    }
}