/* ============================================
   NETFLIX-STYLE HERO SECTION
   ============================================ */

/* Hero Section Container */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    margin-bottom: 2vw;
    overflow: hidden;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Gradient Overlays */
.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, 
        #141414 0%, 
        rgba(20,20,20,0.8) 50%, 
        transparent 100%);
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(20,20,20,0.8) 0%, 
        transparent 50%);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4%;
    padding-top: 30vh;
    max-width: 40%;
    min-width: 500px;
}

.hero-title {
    font-size: 3vw;
    font-weight: 700;
    margin: 0 0 0.5em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.1;
    animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-description {
    font-size: 1.2vw;
    color: #fff;
    margin: 0 0 1.5em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    line-height: 1.4;
    animation: fadeInLeft 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-metadata {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1.5em;
    font-size: 1vw;
    animation: fadeInLeft 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-live-badge {
    background: #e50914;
    color: #fff;
    padding: 0.3em 0.6em;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-category {
    color: #b3b3b3;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1em;
    animation: fadeInLeft 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.btn-play,
.btn-info {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.75em 2em;
    font-size: 1.2vw;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-play {
    background: #fff;
    color: #000;
}

.btn-play:hover {
    background: rgba(255,255,255,0.75);
}

.btn-play::before {
    content: '▶';
    font-size: 1.2em;
}

.btn-info {
    background: rgba(109,109,110,0.7);
    color: #fff;
}

.btn-info:hover {
    background: rgba(109,109,110,0.4);
}

.btn-info::before {
    content: 'ℹ';
    font-size: 1.2em;
    font-weight: 700;
}

/* Fade-in animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-content {
        max-width: 50%;
        min-width: 400px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn-play,
    .btn-info {
        font-size: 16px;
    }
}

@media (max-width: 800px) {
    .hero-section {
        height: 60vh;
    }
    
    .hero-content {
        max-width: 100%;
        min-width: auto;
        padding-top: 20vh;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-play,
    .btn-info {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }
}

/* Loading State */
.hero-section.loading .hero-background {
    background: linear-gradient(90deg, 
        #1a1a1a 0%, 
        #2a2a2a 50%, 
        #1a1a1a 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
