* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:"slnt" 0;
}



/* HEADER */
/* header {
    padding-left: 20px;
    padding-right: 20px;
    background-color: #DE3163;
} */

/* .logo {
    font-family: "Cairo", sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: white;
} */

.horizontal-links {
    direction: rtl;
    display: flex;
    align-items: center; 
}

.horizontal-links a {
    display: inline-block;
    margin-right: 20px;
    text-decoration: none;
    color: white;
}

.horizontal-links a:hover {
    text-decoration: underline;
}





/* MOVIE CARD */
.MoviesList {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}



.container {
    margin: 0 auto;
    width: calc(100% - 40px);
}

.slider-wrapper {
    position: relative;
}

.slider-wrapper .image-list {
    display: flex;
    overflow-x: auto;
    align-items: flex-start;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
}

.slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
}

.slider-wrapper .image-list .image-item {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.slider-wrapper .slide-button {
    position: absolute;
    top: 39%; /* 50% */
    padding: 30px 20px;
    color: #fff;
    background-color: rgb(0, 102, 204, 0.8);
    cursor: pointer;
    border-radius: 5px;
    border: none;
    transform: translateY(-50%);
    z-index: 1;
}

.slider-wrapper .slide-button#prev-slide {
    left: -10px;
}

.slider-wrapper .slide-button#next-slide {
    right: -10px;
}

.ItemTitle {
    color: #0066CC;
    text-decoration: none;
}

.ItemTitle:hover {
    color: #1281f0;
}






.categoryItem:hover {
    color: #1281f0;
}


.SectionName {
    display: flex;
    flex-direction: column;
    margin: 20px;
    direction: rtl;
}

.SectionName a {
    color: black;
    text-decoration: none;
    width: fit-content;
}

.MovieCard {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.MovieCard img {
    width: 200px;
    height: 300px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s;
}

.MovieCard img:hover {
    opacity: .9;
    transform: scale(1.1);
}

.MovieCard a, p {
    text-align: center;
}

.CardTitle {
    text-decoration: none;
    color: dodgerblue;
}


.image-container {
    display: inline-block;
    position: relative;
    width: 200px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    background-color: rgb(196, 196, 196);
}


.type {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 20px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #27a5e7;
    padding: 1px 15px;
    font-weight: 700;
    color: white;
    text-align: center;
    max-width: 150px;
}

.rate {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-bottom: 10px;
    margin-left: 10px;
    border-radius: 5px;
    background-color: #3bb33b;
    font-weight: 700;
    color: white;
    width: 50px;
    text-align: center;
}

.poster {
    position: relative;
    width: 200px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px; 
}

.poster img {
    transition: transform 0.3s;
    
}

.poster img:hover {
    opacity: .9;
    transform: scale(1.1);
}




/* PAGINATION */
.NextPages {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.NextPages a {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: black;
    text-decoration: none;
    color: white;
}

.NextPages span {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
    color: black;
}



/* MOVIE PAGE INFO */
.pageInfo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    
}

.watchDownloadButton div {
    min-width: 250px;
    padding: 10px 30px 10px 30px;
    font-family: "Cairo", sans-serif;
    font-weight: 700;
    font-size: 16px;
    background-color: #0066CC;
    /* background-color: #27a5e7; */
    color: white;
    border-radius: 5px;
    border: none;
    text-align: center;
}

.watchDownloadButton div:hover {
    background-color: #1281f0;
    /* background-color: #4bb4ec; */
}

.details {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.detailCard {
    margin-bottom: 10px;
    margin-top: 10px;
    background-color: rgb(224, 224, 224);
    border-radius: 5px;
    direction: rtl;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: right;
    width: calc(100% - 80px);
}

.detail-box {
    width: calc(100% - 80px);
    margin: 10px;
    padding: 20px;
    border-radius: 5px;
    background-color: rgb(224, 224, 224);
    direction: rtl;
    text-align: center;
}

.box-Header {
    font-family: "Cairo", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-align: right;
}



/* IFRAME */
.WatchList {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.embed {
    width: calc(100% - 40px);
    padding-top: 56.25%;
    position: relative;
    margin: 10px 0px;
    background-color: rgb(224, 224, 224);
    border-radius: 5px;
}

.embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: black;
    text-align: center;
    direction: rtl;
    z-index: 0;
}

.CurrentStream {
    direction: rtl;
}

.NoItems {
    direction: rtl;
    margin: 15px;
}

.CurrentWatch {
    /* display: flex;
    justify-content: center; */
    margin: 10px 0px;
    background-color: rgb(224, 224, 224);
    width: calc(100% - 40px);
    border-radius: 0px 0px 5px 5px;
}
.CurrentWatch ul {
    list-style-type: none;
    /* padding: 0;
    display: flex; */
    padding: 0px 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.CurrentWatch li {
    margin: 0px 5px;
    padding: 5px 20px;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    text-align: center;
}
.CurrentWatch li.active {
    background-color: #0066CC;
    color: white;
}
.CurrentWatch li:hover {
    background-color: #1281f0;
    color: white;

}

.WatchTitle {
    width: calc(100% - 40px);
    background-color: rgb(224, 224, 224);
    direction: rtl;
    padding: 10px 0px;
    font-family: "Cairo", sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: -10px;
    border-bottom: 1px solid #fff;
}

.WatchTitle span {
    padding-right: 10px;
}

.WatchList {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.space {
    margin-top: 10px;
}

.DownloadLinks {
    /* display: flex; */
    /* justify-content: center; */
    margin: 10px 1px;
    background-color: rgb(224, 224, 224);
    width: calc(100% - 40px);
    border-radius: 0px 0px 5px 5px;
    
}
.DownloadLinks ul {
    list-style-type: none;
    padding: 0px 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.DownloadLinks a {
    margin: 0px 5px;
    padding: 5px 20px;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    text-align: center;
    text-decoration: none;
}
.DownloadLinks a.active {
    background-color: #0066CC;
    color: white;
}
.DownloadLinks a:hover {
    background-color: #1281f0;
    color: white;

}



/* FOOTER */
footer {
    display: flex;
    justify-content: center;
    background-color: #DE3163;
    padding: 10px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-row > div {
    margin: 0 10px;
}

.CopyRight {
    font-size: 15px;
    text-align: center;
    color: white;
}

.DMCA {
    color: white;
}

.tg-section {
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

.tg {
    font-size: 18px;
    width: 250px;
    background:#27a5e7;
    box-shadow:1px 1px 5px #27a5e7;
    color:#FFFFFF;
    border-radius:5px;
    padding: 20px;
}








/* nav {
    margin: -20px;
} */









/* .menu {
    direction: rtl;
} */

/* ul {
    display: flex;
    align-items: center; 
    list-style: none;
}

ul li {
    display: inline-block;
    position: relative;
}

ul li a {
    display: block;
    padding: 0px 25px;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
}

ul li ul.dropdown li {
    display: block;
}

ul li ul.dropdown {
    width: 100%;
    background: #e73e6e;
    position: absolute;
    z-index: 999;
    display: none;
    padding: 0;
    border-radius: 5px;
    width: 180px;
}

ul li a:hover {
    background-color: #f74476;
    border-radius: 5px;
}

ul li:hover ul.dropdown {
    display: block;
} */








.SearchBox {
    direction: rtl;
    margin-top: 10px;
}
  
.SearchBox input {
    width: calc(80% - 5px);
    height: 40px;
    padding: 5px 10px 5px 10px;
    border: 1px solid #ccc;
    border-radius: none;
    font-family: "Cairo", sans-serif;
    color: black;
    outline: none;
}

.SearchBox input:focus {
    border-color: dodgerblue;
}

.SearchBox button {
    width: 20%;
    height: 40px;
    border: none;
    color: #fff;
    background-color: #0066CC;
    font-family: "Cairo", sans-serif;
}

.SearchBox button:hover {
    background-color: #1281f0;
}


