img.imgdns {
    width: 100%;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:hover .video-container {
    opacity: 1;
}

.card-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.space {
    margin: 20px 0;
}

.owl-nav {
    display: none !important;
}

.fav-info {
    font-size: 24px;
    margin: 0 0 15px;
    background: rgba(25, 28, 36, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #FFF;
    text-align: center;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.fav-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px -1px rgba(0, 0, 0, 0.3);
}

.container-box-office,
.movies-list-wrap.mlw-latestmovie {
    background: rgba(25, 28, 36, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 25px;
    margin-bottom: 24px;
    padding-bottom: 0px;
}

.fav-info-premium {
    margin: 3rem auto;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #FFF;
    text-align: center;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 8px 32px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.fav-info-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.fav-info-premium:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px -1px rgba(0, 0, 0, 0.4);
}

.premium-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.premium-icon {
    font-size: 48px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: starPulse 2s infinite;
}

@keyframes starPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.premium-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.premium-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.premium-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.premium-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.premium-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #000;
}

.premium-button:hover::before {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .fav-info-premium {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .premium-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .premium-text {
        align-items: center;
    }

    .premium-title {
        font-size: 24px;
    }

    .premium-description {
        font-size: 16px;
    }

    .premium-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .premium-icon {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .premium-title {
        font-size: 20px;
    }

    .premium-description {
        font-size: 14px;
    }

    .premium-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

.fi-domain {
    color: red;
    line-height: 35px;
}

.vipsadis {
    font-size: 24px;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

.movie-opt {
    padding-bottom: 0px !important;
}

span#box-office-title {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

@media (max-width: 1000px) {
    .vipsadis {
        font-size: 26px !important;
    }

    .fav-info {
        margin-top: 10px;
        font-size: 25px !important;
        padding: 10px 10px !important;
    }

    .premium-content {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .premium-text {
        align-items: center;
        text-align: center;
        margin: 10px 0;
    }

    .premium-title {
        font-size: 20px;
    }

    .premium-description {
        font-size: 14px;
    }

    .premium-button {
        padding: 10px 28px;
    }
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

@keyframes shine {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}
/*
     FILE ARCHIVED ON 22:06:57 Apr 04, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 22:10:38 Jul 06, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.967
  exclusion.robots: 0.047
  exclusion.robots.policy: 0.027
  esindex: 0.018
  cdx.remote: 48.904
  LoadShardBlock: 300.899 (3)
  PetaboxLoader3.datanode: 231.825 (5)
  PetaboxLoader3.resolve: 186.462 (3)
  load_resource: 295.947
  loaddict: 136.619
*/