

.hero-prime-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: #000;
    z-index: 1;
    
    /* Negate body padding to make full-width */
    margin-left: calc(-1 * var(--app-space));
    margin-right: calc(-1 * var(--app-space));
    
    /* Adjust width to account for negative margins */
    width: calc(100% + 2 * var(--app-space));
    
    /* Ensure proper positioning */
    left: 0;
}

/* EMERGENCY: Force buttons to be clickable */
.hero-actions {
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

.hero-main-btn,
.hero-circle-btn {
    position: relative !important;
    z-index: 10000 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ensure links work */
.hero-actions a {
    pointer-events: auto !important;
    z-index: 10000 !important;
    position: relative !important;
}

/* Faster slide transition - eye blink effect for ALL transitions */
.hero-prime-slider .uk-slideshow-items,
.hero-prime-slider .uk-slideshow-items > li,
.hero-prime-slider [uk-slideshow] *,
.uk-slideshow-items,
.uk-slideshow-items > li {
    transition: transform 0.1s ease-out, opacity 0.1s ease-out !important;
    animation-duration: 0.1s !important;
    transition-duration: 0.1s !important;
}

/* ============================================
   HERO RESPONSIVE - Full-width adjustments
   ============================================ */

@media (min-width: 480px) {
    .hero-prime-slider {
        margin-left: calc(-1 * var(--app-space-md));
        margin-right: calc(-1 * var(--app-space-md));
        width: calc(100% + 2 * var(--app-space-md));
    }
}
@media (max-width: 740px) {
    .hero-actions,
    .hero-expand-area {
        display: none !important;
    }
    .hero-prime-slider {
        margin-top:100px !important;
        height: 100% !important;
    }
}
@media (min-width: 960px) {
    .hero-prime-slider {
        margin-left: calc(-1 * var(--app-space-lg));
        margin-right: calc(-1 * var(--app-space-lg));
        width: calc(100% + 2 * var(--app-space-lg));
    }
}

@media (min-width: 1200px) {
    .hero-prime-slider {
        margin-left: calc(-1 * var(--app-space-xl));
        margin-right: calc(-1 * var(--app-space-xl));
        width: calc(100% + 2 * var(--app-space-xl));
    }
}

@media (max-width: 768px) {
    .hero-prime-slider { 
        height: 60vh;
    }
    
    /* Show full video/image on mobile - no cropping */
    .hero-video,
    .hero-poster {
        object-fit: contain !important;
        -webkit-object-fit: contain !important;
        -moz-object-fit: contain !important;
        -o-object-fit: contain !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
    }
}

.hero-prime-slider .uk-slideshow-items,
.hero-prime-slider .uk-slideshow-items > li {
    height: 100%;
}

/* Video background */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-in-out;
    z-index: 1;
}

/* Poster image - shows immediately when slide changes */
.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay - IMPORTANT: Must NOT block button clicks */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
    pointer-events: none !important; /* CRITICAL: Allow clicks to pass through */
}

/* Prime cinematic gradient */
.hero-gradient {
    position: absolute;
    inset: 0;
    width: 35%;
   background: linear-gradient(
 
90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 35%, rgb(0 0 0 / 59%) 60%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
    pointer-events: none !important; /* CRITICAL: Allow clicks to pass through */
}

/* Bottom fade */
.hero-prime-slider::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, #000, transparent);
    z-index: 5;
    pointer-events: none; /* Allow clicks to pass through */
}

/* Content - Positioned at bottom area */
.hero-content {
    position: absolute;
    bottom: 15%;
    left: 46px;
    z-index: 10;
    max-width: 40%;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    pointer-events: none; /* Allow clicks to pass through content wrapper */
}

/* But re-enable pointer events for interactive elements inside */
.hero-content .hero-actions,
.hero-content .hero-main-btn,
.hero-content .hero-circle-btn,
.hero-content a,
.hero-content button,
.hero-content .hero-title-wrap,
.hero-content .hero-expand-area {
    pointer-events: auto !important;
}

/* Enable pointer events for hero buttons (outside hero-content) */
.hero-actions,
.hero-main-btn,
.hero-circle-btn {
    pointer-events: auto !important;
}

/* Circle buttons - Prime style */
.hero-circle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D7D6D1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-circle-btn:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(255,255,255,0.4);
}

/* Age badge */
.hero-age-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.75);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #fff;
    z-index: 20;
}



/* =====================================================
   TITLE IMAGE WITH HOVER DESCRIPTION
=====================================================*/

.hero-title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 4px;
    cursor: pointer;
}

.hero-title-image {
    max-width: 280px;
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hero-title-wrap:hover .hero-title-image {
    transform: scale(1.02);
}

.hero-title-text {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Tablet styles */
@media (max-width: 1024px) {
    .hero-title-image {
        max-width: 240px;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .hero-title-wrap {
        margin-bottom: 0px;
    }
    
    .hero-title-image {
        max-width: 200px;
    }
    
    .hero-title-text {
        font-size: 28px;
    }
}

/* Mobile small */
@media (max-width: 480px) {
    .hero-title-image {
        max-width: 160px;
    }
    
    .hero-title-text {
        font-size: 14px;
    }
}

/* Mobile portrait */
@media (max-width: 360px) {
    .hero-title-image {
        max-width: 140px;
    }
}

/* Expand Trigger Container */
.hero-expand-trigger {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Award Badge */
.hero-award {
    color: #00ff88;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 0;
    cursor: pointer;
    display: inline-block;
}

/* Expand Area - Collapsed by default */
.hero-expand-area {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease 3s, 
                opacity 0.3s ease 3s;
}

/* Expand Area Content */
.hero-description {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 8px;
    
    /* Show only 2 lines with "..." at end */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Expand on hover - opens immediately */
.hero-expand-trigger:hover .hero-expand-area,
.hero-expand-area:hover,
.hero-content:hover .hero-expand-area,
.hero-slide:hover .hero-expand-area {
    max-height: 20%;
    opacity: 1;
    transition-delay: 0s;
    pointer-events: auto;
}

/* Old active states - keep for compatibility */
.hero-slide.active-expand .hero-expand-area,
.hero-slide.uk-active.active-expand .hero-expand-area {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Expand Metadata Row */
.hero-expand-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #aaa;
    font-size: 12px;
    margin-top: 8px;
}

.hero-expand-metadata .hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-expand-metadata .hero-meta-item span[uk-icon] {
    width: 14px;
    height: 14px;
}

/* =====================================================
   QUALITY BADGES
=====================================================*/

.hero-quality-badges {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.hero-quality-badge {
    border: 1px solid rgba(255,255,255,0.6);
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 3px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

/* =====================================================
   PRIME MEMBERSHIP BADGE
=====================================================*/

.hero-prime-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 700;
}

.hero-prime-badge.prime-included {
    color: #00A8E1;
}

.hero-prime-badge.prime-rental {
    color: #FF9900;
}

.prime-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #00A8E1;
    color: #000;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.prime-rental .prime-check {
    background: #FF9900;
}

/* =====================================================
   METADATA ROW
=====================================================*/

.hero-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    color: #ccc;
    font-size: 13px;
    margin-bottom: 4px;
}

.meta-separator {
    color: rgba(255,255,255,0.4);
}

/* =====================================================
   TAGLINE
=====================================================*/

.hero-tagline {
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
    max-width: 450px;
    line-height: 1.3;
    font-style: italic;
}

/* =====================================================
   ACTION BUTTONS
=====================================================*/

.hero-actions {
    margin-top: 2px;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 10px 16px;
    border-radius: 6px;
    background: #E50914;
    border: none;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-main-btn:hover {
    background: #f40617;
    transform: scale(1.02);
}

.btn-play-icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

/* =====================================================
   PROGRESS BAR
=====================================================*/

.hero-progress-bar {
    width: 260px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    margin-top: 15px;
    border-radius: 2px;
    overflow: hidden;
}

.hero-progress-fill {
    height: 100%;
    background: #E50914;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* =====================================================
   WATCHLIST BUTTON ACTIVE STATE
=====================================================*/

.hero-circle-btn.active {
    background: #E50914;
    border-color: #E50914;
    color: #fff;
}

.hero-circle-btn.active:hover {
    background: #ff1a1a;
    border-color: #ff1a1a;
    color: #fff;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
}

/* =====================================================
   HERO ARROWS - NO BACKGROUND, SCALE ON HOVER
   =====================================================*/

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: transparent !important;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 150;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
    pointer-events: auto;
}

.hero-arrow svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    stroke: #ffffff;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.3s ease;
}

/* Show arrows when hovering anywhere on the hero slider */
.hero-prime-slider:hover .hero-arrow,
.hero-prime-slider:focus .hero-arrow,
.hero-prime-slider:focus-within .hero-arrow {
    opacity: 1;
    visibility: visible;
}

/* Hover effect - scale up */
.hero-arrow:hover {
    background: transparent !important;
    border: none;
    transform: translateY(-50%) scale(1.15);
}

.hero-arrow:hover svg {
    transform: scale(1.2);
}

.hero-arrow-left {
    left: 0px;
}

.hero-arrow-right {
    right: 0px;
}



@media (min-width: 960px) {
    .hero-arrow-left {
        left: 0px;
    }
    .hero-arrow-right {
        right: 0px;
    }
}

/* Ensure arrows are clickable */
.hero-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

/* =====================================================
   SCROLLING DOTS - PRIME STYLE (5 MAX VISIBLE)
=====================================================*/

.hero-dots-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    overflow: hidden;
    z-index: 100;
}

.hero-dots-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    height: 20px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    margin-right: 12px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-dot:last-child {
    margin-right: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

.hero-dot.active {
    width: 28px;
    height: 8px;
    background: #fff;
    border-radius: 4px;
}

/* =====================================================
   RESPONSIVE
 =====================================================*/
.meta-text {
    word-spacing: 4px;
}

/* Large screens */
@media (min-width: 1025px) {
    .hero-content {
        bottom: 35%;
        left: 40px;
    }
}

/* Medium Large screens - between 1025px and 1115px */
@media (min-width: 1025px) and (max-width: 1115px) {
    .hero-content {
        bottom: 25%;
        left: 40px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        bottom: 20%;
        left: 40px;
        max-width: 40%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title-wrap {
        margin-bottom: 0px;
    }
   
    .hero-prime-slider::after {
	    background: none !important;
    } 
    .hero-content {
        left: 15px;
        right: var(--app-space);
        bottom: 0%;
        max-width: 60%;
    }
    
    .hero-actions {
        margin-top: 15px;
        gap: 10px;
    }
    
    .hero-main-btn {
        min-width: 100px;
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hero-circle-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-quality-badges {
        margin-bottom: 6px;
    }
    
    .hero-prime-badge {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .hero-meta-row {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .hero-tagline {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .hero-progress-bar {
        width: 200px;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
    }
    
    .hero-arrow svg {
        width: 24px;
        height: 24px;
        stroke-width: 2.5;
    }
    
    .hero-age-badge {
        bottom: 70px;
        font-size: 11px;
        padding: 4px 8px;
    }
    
    /* Mobile expand area */
    .hero-expand-area {
        max-height: 0;
    }
    
    .hero-description {
        font-size: 13px;
        max-width: 90vw;
    }
    
    .hero-slide.active-expand .hero-expand-area,
    .hero-slide.uk-active.active-expand .hero-expand-area {
        max-height: 180px;
    }
    
    /* Mobile dots - smaller */
    .hero-dots-container {
	width: 120px;
        bottom: 0px;
	position : relative;
    }
    
    .hero-dot {
        width: 6px;
        height: 6px;
        margin-right: 10px;
    }
    
    .hero-dot.active {
        width: 20px;
        height: 6px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-actions {
        margin-top: 12px;
        gap: 8px;
    }
    
    .hero-main-btn {
        min-width: 80px;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .hero-circle-btn {
        width: 36px;
        height: 36px;
    }
    
    .hero-circle-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .hero-actions {
        margin-top: 10px;
        gap: 6px;
    }
    
    .hero-main-btn {
        min-width: 70px;
        padding: 7px 10px;
        font-size: 12px;
    }
    
    .hero-circle-btn {
        width: 32px;
        height: 32px;
    }
    
    .hero-circle-btn svg {
        width: 14px;
        height: 14px;
    }
}

