body{
  background-color: #181818;
}

.contentWrapperZone {
            max-width: 1400px;
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
            animation: fadeIn 1s ease-in;
        }

        .mediaPlaybackHub {
            width: 100%;
            max-width: 100%;
            position: relative;
        }

        .moodEffectGlow {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .moodEffectGlow.playing {
            box-shadow: 0 0 50px rgba(255, 128, 128, 0.9), 
                        0 0 100px rgba(255, 128, 128, 0.5);
        }

        video {
            width: 100%;
            display: block;
            border-radius: 10px;
        }

        /* Cursor handling */
        .mediaPlaybackHub video {
            cursor: pointer;
        }

        .mediaPlaybackHub.hideControls:not(:hover) video {
            cursor: none;
        }

        .interactionPanel {
            background: rgba(0, 0, 0, 0.8);
            padding: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            position: absolute;
            bottom: 0;
            width: 100%;
            transition: opacity 0.3s ease;
            opacity: 0; /* Hidden by default */
        }

        /* Show controls only on hover or when paused */
        .mediaPlaybackHub:hover .interactionPanel,
        .mediaPlaybackHub.controlsActive .interactionPanel {
            opacity: 1;
        }

        .interactionPanel button,
        .interactionPanel select,
        .interactionPanel input {
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .interactionPanel button:hover,
        .interactionPanel select:hover,
        .interactionPanel input:hover {
            color: #1e90ff;
            transform: scale(1.1);
        }

        .progressTracker {
            flex: 1;
            height: 5px;
            background: #555;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
        }

        .progressFill {
            height: 100%;
            background: #750000;
            width: 0;
            transition: width 0.1s linear;
        }

        .volumeSlider {
            width: 80px;
            accent-color: #750000;
        }

        .speedSelector {
            background: rgba(255, 255, 255, 0.2);
            padding: 5px;
            border-radius: 5px;
        }

        canvas {
            display: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .contentWrapperZone {
                padding: 0 10px;
            }

            .interactionPanel {
                padding: 5px;
                gap: 5px;
            }

            .volumeSlider {
                width: 60px;
            }

            .interactionPanel button,
            .interactionPanel select {
                font-size: 14px;
            }

            .moodEffectGlow.playing {
                box-shadow: 0 0 40px rgba(255, 128, 128, 0.7), 
                            0 0 80px rgba(255, 128, 128, 0.4);
            }
        }

        @media (max-width: 480px) {
            .interactionPanel {
                flex-wrap: wrap;
            }

            .progressTracker {
                order: -1;
                width: 100%;
                margin-bottom: 5px;
            }

            .volumeSlider {
                width: 50px;
            }

            .moodEffectGlow.playing {
                box-shadow: 0 0 30px rgba(255, 128, 128, 0.7), 
                            0 0 60px rgba(255, 128, 128, 0.4);
            }
        }


        /*               */

        .movieShowcaseWrapper {
    max-width: 1200px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.posterDisplayZone {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.filmArtwork {
    width: 200px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    object-fit: cover;
}

.filmArtwork:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.movieInfo {
    margin-top: 20px;
}

.releaseInfoText {
    font-size: 0.9rem;
    color: #cfcfcf;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.ratingStars {
    color: #ffd700;
    font-size: 1.2rem;
}

.ratingScore {
    color: #d0d0e0;
    font-weight: 600;
}

.storySummaryBlock {
    flex: 2;
    min-width: 300px;
}

.storySummaryBlock h2 {
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.genreTags {
    font-size: 0.85rem;
    color: #b0b0ff;
    margin-bottom: 15px;
    font-weight: 500;
}

.synopsis {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.8;
}

.actionButtons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trailerButton {
    padding: 12px 28px;
    background: linear-gradient(45deg, #ff4b4b, #ff914d);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 75, 75, 0.4);
}

.trailerButton:hover {
    background: linear-gradient(45deg, #ff914d, #ff4b4b);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 75, 75, 0.6);
}

.socialShare {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d0d0e0;
    font-size: 0.9rem;
}

.socialIcon {
    color: #d0d0e0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.socialIcon:hover {
    color: #ff4b4b;
}

/* Lightbox Styles */
.lightboxOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightboxOverlay.active {
    display: flex;
    opacity: 1;
}

.lightboxContent {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.lightboxOverlay.active .lightboxContent {
    transform: scale(1);
}

.lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.closeLightbox {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ff4b4b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.closeLightbox:hover {
    background: #ff914d;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.disqus-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ad-box {
    width: 300px;
    height: 250px;
    background: linear-gradient(135deg, #ff4b4b, #4ecdc4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ad-box:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .movieShowcaseWrapper {
        flex-direction: column;
        align-items: center;
    }

    .posterDisplayZone, .storySummaryBlock {
        text-align: center;
    }

    .filmArtwork {
        width: 180px;
    }

    .actionButtons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .movieShowcaseWrapper {
        padding: 20px;
    }

    .storySummaryBlock h2 {
        font-size: 1.8rem;
    }

    .synopsis {
        font-size: 0.95rem;
    }

    .trailerButton {
        padding: 10px 24px;
    }

    .content-container {
        flex-direction: column;
        align-items: center;
    }

    .ad-box {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .filmArtwork {
        width: 150px;
    }

    .storySummaryBlock h2 {
        font-size: 1.5rem;
    }

    .synopsis {
        font-size: 0.9rem;
    }

    .closeLightbox {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
        top: -15px;
        right: -15px;
    }
}