/* Only stylesheet for ver2 frontend - Swiper base styles included here */
@import url('https://cdn.jsdelivr.net/npm/swiper@12/swiper-bundle.min.css');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}


/* Releases Movies section: same size as HTML (poster card) */
.release-slide-img,
.releases-slide-img {
    width: 100%;
    height: 424px;
    object-fit: cover;
    display: block;
    border-radius: 0.75rem;
}

/* Movie detail page: show full poster without cropping, keep inside frame */
.movie-detail-poster {
    width: 100% !important;
    max-width: 300px !important;
    max-height: 480px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 0.75rem;
}

/* Hero section: poster must stay inside the card (no overflow) */
.movie-detail-poster-hero {
    max-height: 100% !important;
}

/* Latest News & Articles section: same size as HTML (thumbnail card) */
.latest-news-slide-img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    display: block;
    border-radius: 3px;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #E5282A !important;
    width: 16px !important;
    border-radius: 4px !important;
}

.partners-pagination .swiper-pagination-bullet {
    background: #9A9A9A !important;
    opacity: 1 !important;
    width: 16px !important;
    height: 16px !important;
}

.swiper-pagination.gray-pagination .swiper-pagination-bullet {
    background: #9A9A9A !important;
}

.swiper-pagination.gray-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #E5282A !important;
    width: 16px !important;
    border-radius: 4px !important;
}

.partners-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff !important;
    border: 2px solid #E5282A !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
}


.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}



.swiper-button-prev,
.swiper-button-next {
    background: #E5282A !important;
    border-radius: 4px !important;
    position: static !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    color: #fff !important;
    height: 20px !important;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled,
.news .swiper-button-next.swiper-button-disabled,
.news .swiper-button-prev.swiper-button-disabled {
    cursor: auto;
    opacity: 1 !important;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.25) !important;
}

.news .swiper-button-next.swiper-button-disabled,
.news .swiper-button-prev.swiper-button-disabled {
    background-color: #fff !important;
}

.swiper-button-next.swiper-button-disabled svg path,
.swiper-button-prev.swiper-button-disabled svg path,
.news .swiper-button-next.swiper-button-disabled svg path,
.news .swiper-button-prev.swiper-button-disabled svg path {
    fill: #000 !important;
}

.imageResize {
    width: auto !important;
}

.footer-bg::before {
    content: '';
    position: absolute;
    top: -46px;
    left: 0;
    right: 0;
    background-image: url('../images/footer-bg.png');
    background-repeat: repeat-x;
    background-position: top center;
    height: 100%;
    z-index: -1;
}

.about-us {
    background-image: url('../images/reel.png');
    background-repeat: no-repeat;
    background-position: top right;
}


.gray-pagination {}
