/* Hero Spotlight Header Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 560px;
    max-height: 850px;
    display: flex;
    align-items: flex-end;
    padding: 0 4% 5rem 4%;
    overflow: hidden;
    background-color: #070709;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: brightness(0.85) contrast(1.05);
    transform: scale(1.02);
    transition: transform 8s ease-out;
}

.hero-banner:hover .hero-backdrop {
    transform: scale(1.06);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, #0a0a0c 0%, rgba(10, 10, 12, 0.85) 40%, rgba(10, 10, 12, 0.1) 75%, rgba(10, 10, 12, 0) 100%),
        linear-gradient(0deg, #0a0a0c 0%, rgba(10, 10, 12, 0.6) 40%, rgba(10, 10, 12, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(56, 189, 248, 0.18);
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    width: fit-content;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.hero-match {
    color: #38bdf8;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-quality {
    border: 1px solid var(--border-glass);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.hero-synopsis {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.45);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    transform: scale(1.04);
    box-shadow: 0 6px 25px rgba(56, 189, 248, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.04);
}

.btn-icon-only {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

.btn-icon-only:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.btn-icon-only svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 70vh;
        padding-bottom: 3rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-synopsis {
        font-size: 0.95rem;
        -webkit-line-clamp: 2;
    }
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}
