:root {
    --gold: linear-gradient(135deg, #bd5462 0%, #fa00d9 50%, #bd5462 100%);
    --bg-dark: #0a0a0a;
}

.splash-wrapper {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: exitScreen 0.4s ease-in 2.2s forwards; /* پشتی ١.٢ سانیە لاد چیت */
}

.logo-container {
    text-align: center;
}

.modern-logo {
    font-family: 'Coiny', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 12px;
    background: var(--gold);
    /* ئەڤە ئەو پشکەیە کو دبیت ب خەلەت بدەت */
    background-clip: text; 
    -webkit-background-clip: text;
    color: transparent; /* ل شوینا -webkit-text-fill-color دشێی ڤێ بکاربینی */
    position: relative;
    margin: 0;
    animation: revealLogo 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    opacity: 0;
}

.line-loader {
    height: 2px;
    width: 0;
    background: var(--gold);
    margin: 10px auto;
    animation: loadLine 1.8s ease-in-out 0.2s forwards;
}

.welcome-text {
    color: #d40ea3;
    font-size: 30px;
    font-family: Coiny;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.6s forwards;
}

/* Animations */
@keyframes revealLogo {
    from { transform: translateY(20px); opacity: 0; filter: blur(10px); }
    to { transform: translateY(0); opacity: 1; filter: blur(0); }
}

@keyframes loadLine {
    to { width: 100%; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes exitScreen {
    to { opacity: 0; visibility: hidden; transform: scale(1.1); }
}




*{
    margin: 0px;
    padding: 0px;
    font-family: Cinzel;
    box-sizing: border-box;
}
body{
    margin: 0px;
    padding: 0px;
    font-family: cinzel;
    background-color: #080808;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
::selection{
    background-color: #e70634;
    color: #080808;
}
/*==navigation===========================*/
.navigation{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 50px;
    max-width: 1400px;
    margin: auto;
    width: 100%;
}
.navigation .menu-icon{
    cursor: pointer;
    float: right;
    padding: 20px 10px;
    z-index: 103;
}
.navigation .menu-icon .nav-icon{
    background-color: #ee18cacc;
    display: block;
    height: 2px;
    width: 25px;
    position: relative;
    transition: background 0.2s ease-out;
}
.navigation .menu-icon .nav-icon::before,
.navigation .menu-icon .nav-icon::after{
    background-color: #ee18cacc;
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    transition: all ease-out 0.2s;
}
.navigation .menu-icon .nav-icon::before{
    top: 8px;
}
.navigation .menu-icon .nav-icon::after{
    top: -8px;
}
.navigation .menu-btn:checked ~ .menu-icon .nav-icon{
    background: transparent;
}
.navigation .menu-btn:checked ~ .menu-icon .nav-icon::before{
    transform: rotate(-45deg);
    top: 0px;
}
.navigation .menu-btn:checked ~ .menu-icon .nav-icon::after{
    transform: rotate(45deg);
    top: 0px;
}
.menu-btn{
    display: none;
}
/*--menu-----------------------*/
.menu{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #111111f1;
    z-index: 102;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fade 0.3s;
}
.menu li a{
    color: rgb(241, 22, 212);
    margin: 0px 30px;
    font-size: 2rem;
    font-family: Noto Kufi Arabic;
    transition: all ease 0.3s;
}
.menu li a:hover{
    font-size: 2.3rem;
    color: #e70634;
    transition: all ease 0.3s;
}
.navigation .menu-btn:checked ~ .menu{
    display: flex;
}
@keyframes fade{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
/*--logo-------------------*/
.logo{
    color: #e706c9;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 400;
    margin: 0px auto 0px 40px;
    display: flex;
    align-items: center;
    font-family: Coiny;
    letter-spacing: 1px;
}
/*--seach-box----------------*/
.search-box{
    background-color: #d1d1d111;
    padding: 3px 20px;
    border-radius: 20px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
}
.search-box input{
    background-color: transparent;
    border: none;
    outline: none;
    color: #ffffff;
}
.search-box input::placeholder{
    color: #ffffff5e;
}
.search-box button{
    background-color: transparent;
    color: #ffffffc9;
    border: none;
    outline: none;
    cursor: pointer;
}
/*--slider--------------------*/
#main-slider{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    max-width: 1170px;
    width: 100%;
}
.main-slider-box {
    width: 100%px;
    height: 450px;
    box-shadow: 2px  2px 10px rgba(0, 0, 0, 1);
    border: 1px solid #0e0e0ec2;
    position: relative;
    overflow: hidden;
    user-select: none;
}
.main-slider-img{
    width: 100%;
    height: 100%;
}
.main-slider-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    
}
.main-slider-text{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #161616b9 35%, rgba(73,73,73,0.23) 64%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 25px;
}
.main-slider-text .quality{
    background-color: #e706c9;
    color: #080808;
    font-weight: 600;
    padding: 0px 5px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.main-slider-text .movie-name{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-slider-text .movie-name span{
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 400;
    color: rgba(240, 240, 240, 0.82);
}
.main-slider-text .movie-name strong,
.main-slider-text .movie-name a{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 20px;
    margin-top: 10px;
    color: #dfdfdfdf;
    letter-spacing: 0.5px;
    font-family: Coiny;
}
.main-slider-text .category{
    color: #969696;
    font-size: 1.2rem;
    font-weight: 600;
}
.main-slider-text .category a{
    color: #cfcfcf;
    font-family: Coiny;
    margin: 0px 3px;
}

.main-slider-text .category-rating{
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
}
.main-slider-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 100%;
    background-color: rgba(27, 27, 27, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: all ease 0.3s;
    z-index: 2;
}
.main-slider-overlay img{
    font-size: 1rem;
}
.main-slider-box:hover .main-slider-overlay{
    top: 0px;
    transition: all ease 0.3s;
}
.swiper-button-next,
.swiper-button-prev{
    position: static !important;
    transform: translate(0,0);
    margin: 10px 0px 0px 20px !important;
}
.slider-btns{
    display: flex;
    justify-content: flex-end;
    max-width: 1170px;
    width: 100%;
    margin: 10px auto 0px auto;
}
.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 25px !important;
    font-weight: 800;
    color: #ffffff;
}
/*--==latest=======================*/
#latest{
    max-width: 1170px;
    margin: 30px auto;
    width: 100%;
}
.latest-heading{
    width: 100%;
    padding: 10px 20px;
    background-color: #0e0e0ec2;
    border: 1px solid #161616b9;
}
.latest-heading h1{
    color: #ff40cf;
    font-size: 2rem;
    font-family: Coiny;
    font-weight: 500;
}
.post-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 35px;
    margin: 20px 0px;
}
.post-box{
    width: 100%;
    height: 550px;
    overflow: hidden;
    background-color: #0e0e0ec2;
    border: 1px solid #161616b9;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
    position: relative;
    
}
.post-box .post-img{
    width: 100%;
    height: 100%;
}
.post-box .post-img img{
   width: 100%;
    height: 100%;
    object-position: top center;
    object-fit: cover; 
}
.main-slider-text .movie-name a:hover{
    opacity: 0.8;
    transition: all ease 0.3s;
    font-size: 2rem;
    color: #ff5b5b;
}