/* Movie Carousel - MudBlazor Implementation - Theme Aware - Following moviedetail-hero style */

.movie-carousel-mud {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    z-index: 1;
    width: 100% !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    position: relative;
    overflow: hidden;
    color: var(--theme-text-primary) !important;
}

.movie-carousel-mud .mud-carousel {
    width: 100% !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    background: transparent !important;
}

/* Hero section with background - similar to moviedetail-hero */
.movie-carousel-hero {
    position: relative !important;
    width: 100% !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 40px 0 !important;
    box-sizing: border-box !important;
}

/* Make carousel item clickable */
.movie-carousel-clickable {
    cursor: pointer !important;
    transition: opacity 0.3s ease !important;
}

.movie-carousel-clickable:hover {
    opacity: 0.95 !important;
}

.movie-carousel-clickable:focus {
    outline: 2px solid var(--theme-accent-gold, #D4AF37) !important;
    outline-offset: -2px !important;
}

.movie-carousel-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)) !important;
    z-index: 1 !important;
}

.movie-carousel-hero > * {
    position: relative;
    z-index: 2;
}

/* Ensure play button is above carousel overlay */
.movie-carousel-poster-card {
    position: relative;
    z-index: 3 !important;
    overflow: visible !important;
}

.movie-carousel-poster-card .movie-poster-with-trailer {
    position: relative;
    z-index: 3 !important;
    overflow: visible !important;
}

.movie-carousel-component {
    width: 100% !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
}

/* Carousel navigation buttons - override inline styles - Theme Aware */
.movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"],
.movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"] {
    z-index: 10 !important;
    opacity: 1 !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #1A1A1A !important;
    border: 2px solid #E50914 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    margin-left: 16px !important;
    margin-right: 16px !important;
}

.movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"] {
    margin-left: 16px !important;
    margin-right: 0 !important;
}

.movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"] {
    margin-left: 0 !important;
    margin-right: 16px !important;
}

.movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]:hover,
.movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]:hover {
    opacity: 1 !important;
    background-color: #E50914 !important;
    color: #FFFFFF !important;
    transform: scale(1.15) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
}

/* Gold Black Luxe Theme - Carousel Overrides */
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"],
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"] {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #000000 !important;
    border: 2px solid var(--theme-accent-gold, #D4AF37) !important;
    border-color: var(--theme-accent-gold, #D4AF37) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 8px rgba(212, 175, 55, 0.3) !important;
    outline: none !important;
    outline-offset: 0 !important;
    transform: scale(1) !important;
}

/* Remove any black borders, outlines, or box-shadows that might appear */
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]:focus,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]:focus,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]:focus-visible,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]:focus-visible,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]:active,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]:active {
    outline: none !important;
    border: 2px solid var(--theme-accent-gold, #D4AF37) !important;
    border-color: var(--theme-accent-gold, #D4AF37) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 8px rgba(212, 175, 55, 0.3) !important;
}

/* Remove any default MudBlazor borders that might be black */
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]::before,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]::before,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]::after,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]::after {
    border: none !important;
    outline: none !important;
}

/* Make the arrow icon black for GoldBlackLuxe theme - ensure icon inherits button color */
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"] .mud-icon,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"] .mud-icon {
    color: #000000 !important;
}

[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"] svg,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"] svg {
    color: #000000 !important;
    fill: #000000 !important;
}

[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"] svg path:not([d*="M0 0h24v24H0z"]),
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"] svg path:not([d*="M0 0h24v24H0z"]) {
    fill: #000000 !important;
}

[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]:hover,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]:hover {
    background-color: var(--theme-accent-gold, #D4AF37) !important;
    color: #000000 !important;
    transform: scale(1.15) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 0 0 16px rgba(212, 175, 55, 0.5) !important;
    border-color: var(--theme-accent-gold, #D4AF37) !important;
}

/* Keep arrow icon black on hover for GoldBlackLuxe theme */
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]:hover .mud-icon,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]:hover .mud-icon {
    color: #000000 !important;
}

[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]:hover svg,
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]:hover svg {
    color: #000000 !important;
    fill: #000000 !important;
}

[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]:hover svg path:not([d*="M0 0h24v24H0z"]),
[data-theme="GoldBlackLuxe"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]:hover svg path:not([d*="M0 0h24v24H0z"]) {
    fill: #000000 !important;
}

/* Modern Flat Cinema Theme - Carousel Overrides */
[data-theme="ModernFlatCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"],
[data-theme="ModernFlatCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"] {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: var(--flat-text-primary) !important;
    border: 2px solid var(--flat-accent-red) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

[data-theme="ModernFlatCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]:hover,
[data-theme="ModernFlatCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]:hover {
    background-color: var(--flat-accent-red) !important;
    color: #FFFFFF !important;
}

/* Neon Cinema Theme - Carousel Overrides */
[data-theme="NeonCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"],
[data-theme="NeonCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"] {
    background-color: rgba(26, 26, 46, 0.95) !important;
    color: var(--neon-blue, #00EAFF) !important;
    border: 2px solid var(--neon-blue, #00EAFF) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), var(--neon-glow-blue, 0 0 20px rgba(0, 234, 255, 0.5)) !important;
}

[data-theme="NeonCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]:hover,
[data-theme="NeonCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]:hover {
    background-color: var(--neon-blue, #00EAFF) !important;
    color: #0A0A0F !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), var(--neon-glow-blue-strong, 0 0 30px rgba(0, 234, 255, 0.7)) !important;
}

/* Joomla Cinema Theme - Carousel Overrides */
[data-theme="JoomlaCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"],
[data-theme="JoomlaCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"] {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: var(--joomla-text-primary) !important;
    border: 2px solid var(--joomla-accent-primary) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

[data-theme="JoomlaCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Previous"]:hover,
[data-theme="JoomlaCinema"] .movie-carousel-mud .mud-carousel .mud-icon-button[aria-label="Next"]:hover {
    background-color: var(--joomla-accent-primary) !important;
    color: #FFFFFF !important;
}

.movie-carousel-mud .mud-carousel .flex-grow-1 {
    z-index: 3 !important;
}

/* Carousel bullets/indicators - Theme Aware - Positioned at bottom */
.movie-carousel-mud .mud-carousel .flex-grow-1 {
    align-items: flex-end !important;
    justify-content: center !important;
    padding-bottom: 20px !important;
}

.movie-carousel-mud .mud-carousel .flex-grow-1 .d-flex.justify-center {
    background-color: rgba(0, 0, 0, 0.3) !important;
    padding: 10px 16px !important;
    border-radius: 24px !important;
    gap: 6px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.movie-carousel-mud .mud-carousel .flex-grow-1 .mud-icon-button[aria-label*="Index"] {
    background-color: transparent !important;
    border: none !important;
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    padding: 0 !important;
    margin: 0 2px !important;
    opacity: 0.5 !important;
    transition: all 0.3s ease !important;
}

.movie-carousel-mud .mud-carousel .flex-grow-1 .mud-icon-button[aria-label*="Index"]:hover {
    opacity: 0.8 !important;
    transform: scale(1.2) !important;
}

/* Active bullet - filled circle (has the inner circle path) */
.movie-carousel-mud .mud-carousel .flex-grow-1 .mud-icon-button[aria-label*="Index"] svg path[d*="12 7c-2.76"] {
    fill: #E50914 !important;
    opacity: 1 !important;
}

/* Inactive bullet - outline circle only */
.movie-carousel-mud .mud-carousel .flex-grow-1 .mud-icon-button[aria-label*="Index"]:not(:has(svg path[d*="12 7c-2.76"])) svg path {
    fill: #FFFFFF !important;
    opacity: 0.5 !important;
}

/* Modern Flat Cinema - Bullets */
[data-theme="ModernFlatCinema"] .movie-carousel-mud .mud-carousel .flex-grow-1 .mud-icon-button[aria-label*="Index"] svg path[d*="12 7c-2.76"] {
    fill: var(--flat-accent-red) !important;
}

[data-theme="ModernFlatCinema"] .movie-carousel-mud .mud-carousel .flex-grow-1 .mud-icon-button[aria-label*="Index"]:not(:has(svg path[d*="12 7c-2.76"])) svg path {
    fill: #FFFFFF !important;
}

/* Joomla Cinema - Bullets */
[data-theme="JoomlaCinema"] .movie-carousel-mud .mud-carousel .flex-grow-1 .mud-icon-button[aria-label*="Index"] svg path[d*="12 7c-2.76"] {
    fill: var(--joomla-accent-primary) !important;
}

[data-theme="JoomlaCinema"] .movie-carousel-mud .mud-carousel .flex-grow-1 .mud-icon-button[aria-label*="Index"]:not(:has(svg path[d*="12 7c-2.76"])) svg path {
    fill: #FFFFFF !important;
}

/* Ensure carousel content is visible */
.movie-carousel-mud .mud-carousel-inner {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
    position: relative !important;
}

.movie-carousel-mud .mud-carousel .flex-grow-1 {
    z-index: 3 !important;
    position: relative !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    width: 100% !important;
    overflow: visible !important;
}

.movie-carousel-mud .mud-carousel .flex-grow-1 > div {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    overflow: visible !important;
}

/* Ensure carousel slides are visible */
.movie-carousel-mud .mud-carousel .mud-carousel-slide {
    width: 100% !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.movie-carousel-mud .mud-carousel-item {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    background: transparent !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.movie-carousel-mud .mud-carousel-item.mud-carousel-item-default {
    background: transparent !important;
}

/* Ensure active slide is fully visible */
.movie-carousel-mud .mud-carousel-item:not(.mud-carousel-item-exit) {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Smooth transitions */
.movie-carousel-mud .mud-carousel-item.mud-carousel-transition-slide-next-enter,
.movie-carousel-mud .mud-carousel-item.mud-carousel-transition-slide-next-exit,
.movie-carousel-mud .mud-carousel-item.mud-carousel-transition-slide-prev-enter,
.movie-carousel-mud .mud-carousel-item.mud-carousel-transition-slide-prev-exit {
    transition: opacity 0.5s ease, transform 0.5s ease !important;
}

.movie-carousel-mud .mud-carousel-item.mud-carousel-item-default {
    background: transparent !important;
}


/* Poster card - similar to moviedetail-poster-card */
.movie-carousel-poster-card,
.movie-carousel-poster-card.mud-card {
    background-color: var(--theme-bg-card) !important;
    border: 1px solid var(--theme-border) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

/* Poster image - similar to moviedetail-poster-image */
.movie-carousel-poster-image,
.movie-carousel-poster-image img,
.mud-card-media.movie-carousel-poster-image,
.mud-card-media.movie-carousel-poster-image img,
.movie-carousel-poster-card .mud-card-media,
.movie-carousel-poster-card .mud-card-media[style] {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    object-fit: cover !important;
    width: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 8px !important;
}

/* Override MudBlazor's inline styles for card media - more specific */
.movie-carousel-poster-card .mud-card-media[style*="height"],
.movie-carousel-poster-card .mud-card-media[style*="300px"],
.movie-carousel-poster-card .mud-card-media {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
}

/* Force override any inline height styles - highest specificity */
div.movie-carousel-poster-card > div.mud-card-media.movie-carousel-poster-image[style] {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
}

/* Ensure content is visible during transitions */
.movie-carousel-mud .mud-carousel-item .movie-carousel-slide-content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure poster and content are sharp - no blur */
.movie-carousel-poster {
    image-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    filter: none !important;
}

.movie-carousel-slide-content {
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
}

/* Better text contrast and readability */
.movie-carousel-title {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9) !important;
    filter: none !important;
}

.movie-carousel-meta,
.movie-carousel-description {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
    filter: none !important;
}

.movie-carousel-poster-placeholder {
    height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--theme-bg-secondary) !important;
    color: var(--theme-text-secondary) !important;
}

/* Movie info container - similar to moviedetail-info-container */
.movie-carousel-info-container {
    color: white;
    padding: 20px;
    position: relative;
    z-index: 10 !important;
    pointer-events: auto !important;
}

/* Movie title - similar to moviedetail-title */
.movie-carousel-title {
    font-weight: bold;
    margin-bottom: 16px;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* Movie title Hindi */
.movie-carousel-title-hindi {
    margin-bottom: 12px;
    color: #f0f0f0 !important;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
}

/* Movie meta info - similar to moviedetail-meta */
.movie-carousel-meta {
    margin-bottom: 12px;
    color: #f0f0f0 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}

/* Rating */
.movie-carousel-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.movie-carousel-star-icon {
    color: #FFD700 !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.movie-carousel-rating-text {
    color: #f0f0f0 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
}

/* Movie description - similar to moviedetail-description */
.movie-carousel-description {
    margin-bottom: 20px;
    color: #e0e0e0 !important;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}

/* Release date - similar to moviedetail-release-date */
.movie-carousel-release-date {
    margin-bottom: 20px;
    color: #d0d0d0 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}

/* Modern Flat Cinema Theme - Text Visibility */
[data-theme="ModernFlatCinema"] .movie-carousel-info-container {
    color: white !important;
}

[data-theme="ModernFlatCinema"] .movie-carousel-title,
[data-theme="ModernFlatCinema"] .movie-carousel-title-hindi,
[data-theme="ModernFlatCinema"] .movie-carousel-meta,
[data-theme="ModernFlatCinema"] .movie-carousel-rating-text,
[data-theme="ModernFlatCinema"] .movie-carousel-description,
[data-theme="ModernFlatCinema"] .movie-carousel-release-date {
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9) !important;
}

[data-theme="ModernFlatCinema"] .movie-carousel-hero::before {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)) !important;
}

/* Joomla Cinema Theme - Text Visibility */
[data-theme="JoomlaCinema"] .movie-carousel-info-container {
    color: white !important;
}

[data-theme="JoomlaCinema"] .movie-carousel-title,
[data-theme="JoomlaCinema"] .movie-carousel-title-hindi,
[data-theme="JoomlaCinema"] .movie-carousel-meta,
[data-theme="JoomlaCinema"] .movie-carousel-rating-text,
[data-theme="JoomlaCinema"] .movie-carousel-description,
[data-theme="JoomlaCinema"] .movie-carousel-release-date {
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9) !important;
}

[data-theme="JoomlaCinema"] .movie-carousel-hero::before {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)) !important;
}

/* Action Button */
.movie-carousel-action {
    margin-top: 8px;
    position: relative;
    z-index: 10 !important;
    pointer-events: auto !important;
}

/* Book now button - similar to moviedetail-book-button */
.movie-carousel-button {
    background-color: #E50914 !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    z-index: 5 !important;
    position: relative !important;
}

.movie-carousel-button:hover {
    background-color: #B20710 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4) !important;
}

/* Modern Flat Cinema - Button */
[data-theme="ModernFlatCinema"] .movie-carousel-button {
    background-color: var(--flat-accent-red) !important;
    color: #FFFFFF !important;
}

[data-theme="ModernFlatCinema"] .movie-carousel-button:hover {
    background-color: var(--flat-accent-red-dark) !important;
}

/* Joomla Cinema - Button */
[data-theme="JoomlaCinema"] .movie-carousel-button {
    background-color: var(--joomla-accent-primary) !important;
    color: #FFFFFF !important;
}

[data-theme="JoomlaCinema"] .movie-carousel-button:hover {
    background-color: var(--joomla-accent-primary-dark) !important;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .movie-carousel-hero {
        min-height: 400px !important;
        padding: 20px 0 !important;
    }
    
    .movie-carousel-poster-image,
    .movie-carousel-poster-image img,
    .mud-card-media.movie-carousel-poster-image,
    .mud-card-media.movie-carousel-poster-image img,
    .movie-carousel-poster-card .mud-card-media {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
    }
    
    .movie-carousel-poster-placeholder {
        height: 350px !important;
        min-height: 350px !important;
    }
    
    .movie-carousel-info-container {
        padding: 15px;
    }
    
    .movie-carousel-title {
        font-size: 1.75rem !important;
    }
}

/* Empty carousel state */
.movie-carousel-empty {
    height: 300px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}