/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.left-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* ============================================
   HEADER - LOGO STYLES
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Remove old logo styles */
.logo-circle,
.logo-text {
    display: none;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

.explore {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 3rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.release-date {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #e03615;
    color: #fff;
}

.btn-primary:hover {
    background: #f19e18;
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CAROUSEL NAVIGATION
   ============================================ */
   .carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2rem;
    z-index: 20;
    height: 80px;
}

.carousel-arrows {
    display: flex;
    gap: 1rem;
    align-self: center;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.arrow-btn svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2;
}

.carousel-items {
    display: flex;
    gap: 0;
    align-items: flex-end;
    flex: 1;
    max-width: 1000px;
    position: relative;
    min-width: 0;
    height: 80px;
}

.carousel-item {
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    min-width: 0;
    white-space: nowrap;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
}

.carousel-item-content {
    padding-bottom: 8px;
}

.carousel-item-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    opacity: 0.6;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.carousel-item-date {
    font-size: 0.9rem;
    opacity: 0.5;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.carousel-item.active .carousel-item-title {
    opacity: 1;
    font-size: 1.1rem;
}

.carousel-item.active .carousel-item-date {
    opacity: 0.8;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #e03615;
    width: 0;
    transition: none;
    will-change: width;
}

.carousel-item.active .progress-fill {
    animation: progressAnimation linear forwards;
}

@keyframes progressAnimation {
    from { width: 0%; }
    to { width: 100%; }
}

.mute-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    align-self: center;
    flex-shrink: 0;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mute-btn i {
    font-size: 20px;
}

.pause-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    align-self: center;
    flex-shrink: 0;
}

.pause-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .carousel-items {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    .left-nav {
        gap: 1.5rem;
    }

    nav {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .social-icons {
        gap: 0.5rem;
        padding: 0.6rem 0.8rem;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }
}

/* ============================================
   IN RELEASE SECTION
   ============================================ */
.in-release {
    background: #000;
    padding: 5rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.section-header-left {
    flex-shrink: 0;
    width: 140px;
    padding-top: 0;
    margin-right: 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: capitalize;
    letter-spacing: -1px;
}

.movies-slider-wrapper {
    position: relative;
    flex: 1;
    max-width: calc(100% - 180px);
}

/* Top Progress Bar */
.top-progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
}

.top-progress-fill {
    height: 100%;
    background: #e03615;
    width: 100%;
    transition: width 0.3s ease;
}

/* Arrow Navigation */
.slider-arrows {
    position: absolute;
    right: 0;
    top: -3rem;
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

@media (max-width: 1400px) {
    .slider-arrows {
        right: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .slider-arrows {
        right: 2rem;
        top: -2.5rem;
    }
}

.slider-arrow-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
}

.slider-arrow-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 2;
}

.slider-arrow-btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Movies Slider */
.movies-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0 1.5rem;
}

.movies-slider::-webkit-scrollbar {
    display: none;
}

.movie-card-release {
    flex: 0 0 300px;
    position: relative;
}

.movie-poster-release {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.movie-poster-release img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.movie-card-release:hover .movie-poster-release img {
    transform: scale(1.05);
}

.movie-info-release {
    padding: 0;
}

.movie-title-release {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: opacity 0.3s;
    text-transform: uppercase;
}

.movie-title-release:hover {
    opacity: 0.7;
}

.arrow-link {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.7;
}

.movie-actions {
    display: flex;
    gap: 0.6rem;
}

.action-btn {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: none;
    white-space: nowrap;
}

.action-btn.primary {
    background: #e03615;
    color: #fff;
    box-shadow: 0 4px 20px rgb(224 54 21 / 50%);
}

.action-btn.primary:hover {
    background: #f19e18;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px #f19e1863;
}

.action-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@media (max-width: 1400px) {
    .container {
        gap: 3rem;
        padding: 0 2.5rem;
    }

    .section-header-left {
        width: 120px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .movies-slider-wrapper {
        max-width: calc(100% - 155px);
    }

    .movie-card-release {
        flex: 0 0 280px;
    }

    .movie-poster-release {
        height: 420px;
    }
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .section-header-left {
        width: 100%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .movies-slider-wrapper {
        max-width: 100%;
    }

    .slider-arrows {
        top: -2.5rem;
    }

    .movie-card-release {
        flex: 0 0 260px;
    }

    .movie-poster-release {
        height: 390px;
    }
}

@media (max-width: 768px) {
    .in-release {
        padding: 4rem 0 5rem;
    }

    .container {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .slider-arrows {
        display: none;
    }

    .movie-card-release {
        flex: 0 0 240px;
    }

    .movie-poster-release {
        height: 360px;
        border-radius: 6px;
    }

    .movie-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .action-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.65rem;
    }

    .movie-title-release {
        font-size: 0.85rem;
    }
}

/* ============================================
   TRAILERS AND FEATURED VIDEOS SECTION
   ============================================ */
.trailers-featured-section {
    background: #3a3a3a;
    padding: 5rem 0 7rem;
    position: relative;
}

.trailers-featured-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Side - Title & Button */
.trailers-featured-left {
    flex-shrink: 0;
    width: 350px;
}

.trailers-featured-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.trailers-youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.trailers-youtube-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.trailers-youtube-btn svg {
    width: 24px;
    height: 24px;
}

/* Right Side - Video Slider */
.trailers-featured-right {
    flex: 1;
    position: relative;
    max-width: calc(100% - 390px);
}

.trailers-progress-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.trailers-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.trailers-progress-fill {
    height: 100%;
    background: #e03615;
    width: 100%;
    transition: width 0.3s ease;
}

.trailers-nav-arrows {
    display: flex;
    gap: 12px;
}

.trailers-arrow-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.trailers-arrow-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.trailers-arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.trailers-arrow-btn svg {
    width: 20px;
    height: 20px;
}

.trailers-video-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0 1.5rem;
}

.trailers-video-slider::-webkit-scrollbar {
    display: none;
}

.trailers-video-card {
    flex: 0 0 440px;
    cursor: pointer;
}

.trailers-video-thumbnail {
    position: relative;
    width: 100%;
    height: 248px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #000;
}

.trailers-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.trailers-video-card:hover .trailers-video-thumbnail img {
    transform: scale(1.05);
    opacity: 0.8;
}

.trailers-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.trailers-video-card:hover .trailers-play-overlay {
    transform: translate(-50%, -50%) scale(1.15);
}

.trailers-video-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
    color: #fff;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1400px) {
    .trailers-featured-container {
        gap: 3rem;
        padding: 0 2.5rem;
    }

    .trailers-featured-left {
        width: 300px;
    }

    .trailers-featured-title {
        font-size: 2.5rem;
    }

    .trailers-featured-right {
        max-width: calc(100% - 330px);
    }

    .trailers-video-card {
        flex: 0 0 400px;
    }

    .trailers-video-thumbnail {
        height: 225px;
    }
}

@media (max-width: 1024px) {
    .trailers-featured-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .trailers-featured-left {
        width: 100%;
    }

    .trailers-featured-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .trailers-featured-right {
        max-width: 100%;
    }

    .trailers-video-card {
        flex: 0 0 380px;
    }

    .trailers-video-thumbnail {
        height: 214px;
    }
}

@media (max-width: 768px) {
    .trailers-featured-section {
        padding: 4rem 0 5rem;
    }

    .trailers-featured-container {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .trailers-featured-title {
        font-size: 1.8rem;
    }

    .trailers-youtube-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .trailers-nav-arrows {
        display: none;
    }

    .trailers-progress-container {
        margin-bottom: 2rem;
    }

    .trailers-video-card {
        flex: 0 0 320px;
    }

    .trailers-video-thumbnail {
        height: 180px;
    }

    .trailers-video-title {
        font-size: 0.9rem;
    }
}

/* ============================================
   PROMOTIONAL POSTERS SECTION
   ============================================ */
.promo-posters-section {
    background: #000;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.promo-posters-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

.promo-poster-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.promo-poster-left {
    padding: 50px 20px;
}

.promo-poster-right {
    padding: 50px 20px;
}

.promo-poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: opacity 0.5s ease-in-out;
}

.promo-poster-card.fade-out img {
    opacity: 0;
}

.promo-pause-btn {
    position: absolute;
    bottom: 30px;
    right: 50px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: #fff;
    z-index: 10;
}

.promo-pause-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1400px) {
    .promo-posters-container {
        padding: 0 2.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .promo-posters-container {
        padding: 0 2rem;
        gap: 1.5rem;
    }

    .promo-pause-btn {
        bottom: 25px;
        right: 35px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .promo-posters-section {
        padding: 2rem 0;
    }

    .promo-posters-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .promo-poster-card {
        border-radius: 10px;
    }

    .promo-poster-left,
    .promo-poster-right {
        padding: 15px;
    }

    .promo-pause-btn {
        bottom: 20px;
        right: 25px;
        width: 45px;
        height: 45px;
    }
}/* ============================================
   PROMOTIONAL POSTERS SECTION
   ============================================ */
.promo-posters-section {
    background: #000;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.promo-posters-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 100%;
    position: relative;
}

.promo-poster-left,
.promo-poster-right {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.promo-poster-left img,
.promo-poster-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease-in-out;
}

.promo-poster-left.fade-out img,
.promo-poster-right.fade-out img {
    opacity: 0;
}

.promo-pause-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: #fff;
    z-index: 10;
}

.promo-pause-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .promo-poster-left,
    .promo-poster-right {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .promo-posters-container {
        grid-template-columns: 1fr;
    }

    .promo-poster-left,
    .promo-poster-right {
        height: 280px;
    }

    .promo-pause-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ============================================
   FOOTER - LOGO STYLES
   ============================================ */
.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Remove old footer logo styles */
.footer-logo-circle,
.footer-logo-text {
    display: none;
}

/* Footer Social Icons with Remix Icons */
.footer-social-link i {
    font-size: 20px;
}

/* ============================================
   RESPONSIVE FOOTER LOGO
   ============================================ */
@media (max-width: 1024px) {
    .footer-logo-image {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .footer-logo-image {
        height: 45px;
    }
    
    .footer-social-link i {
        font-size: 18px;
    }
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-top {
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   NEWS HERO SECTION
   ============================================ */
.news-hero {
    background: #000;
    padding: 8rem 3rem 3rem;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.news-hero-content {
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.news-hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

/* ============================================
   NEWS CONTENT SECTION
   ============================================ */
.news-section {
    background: #000;
    padding: 3rem 0 5rem;
}

.news-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 3rem;
}

.news-month-section {
    margin-bottom: 5rem;
}

.news-month-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
    color: #f19e18;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.news-card {
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-card:hover {
    transform: translateY(-3px);
}

.news-card:hover .news-card-title {
    color: #e03615;
}

.news-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #fff;
    transition: color 0.3s ease;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.news-date {
    font-weight: 600;
}

.news-divider {
    opacity: 0.5;
}

.news-category {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: linear-gradient(180deg, #000 0%, #010101 50%, #303030 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="400" cy="600" r="2.5" fill="rgba(255,255,255,0.12)"/><circle cx="900" cy="800" r="1" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    opacity: 0.3;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.newsletter-form {
    text-align: left;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #e03615;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.form-checkbox {
    margin-bottom: 2rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.form-checkbox label a {
    color: #e03615;
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.newsletter-submit {
    width: 100%;
    padding: 1.25rem;
    background: #e03615;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.newsletter-submit:hover {
    background: #f19e18;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1400px) {
    .news-container {
        padding: 0 2.5rem;
    }

    .news-hero {
        padding: 7rem 2.5rem 3rem;
    }

    .news-hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .news-container {
        padding: 0 2rem;
    }

    .news-hero {
        padding: 6rem 2rem 2.5rem;
    }

    .news-hero-title {
        font-size: 3.5rem;
    }

    .news-month-title {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .newsletter-container {
        padding: 0 2rem;
    }

    .newsletter-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .news-container {
        padding: 0 1.5rem;
    }

    .news-hero {
        padding: 5rem 1.5rem 2rem;
        min-height: 30vh;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    .news-hero-title {
        font-size: 2.5rem;
    }

    .news-month-section {
        margin-bottom: 3rem;
    }

    .news-month-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card-title {
        font-size: 1.1rem;
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 1rem;
        color: #fff;
        transition: color 0.3s ease;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        justify-content: space-between;
    }

    .news-card-title i {
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
        transition: transform 0.3s ease;
        opacity: 0.7;
    }
    
    .news-card:hover .news-card-title i {
        transform: translate(3px, -3px);
        opacity: 1;
    }

    .news-card-meta {
        font-size: 0.8rem;
    }

    .newsletter-section {
        padding: 4rem 0;
    }

    .newsletter-container {
        padding: 0 1.5rem;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-subtitle {
        font-size: 1rem;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}