.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: translateX(0);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    z-index: 0;
}

.hero-image.active {
    z-index: 2;
    opacity: 1;
}

.hero-image.slide-in {
    transform: translateX(100%);
    z-index: 1;
    opacity: 1;
}

.hero-image.animate-in {
    transform: translateX(0);
    z-index: 2;
    opacity: 1;
}

.hero-image.animate-out {
    transform: translateX(-100%);
    z-index: 1;
    opacity: 0;
}

.hero-shadow {
    display: none;
}

.hero-content {
    position: absolute;
    top: 26%;
    left: 13%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5vh;
    z-index: 3;
}

.hero-headlines {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3.5vh;
}

.headline-primary,
.headline-accent {
    text-transform: capitalize;
    font-size: clamp(23px, 4vw, 72px);
    font-weight: bold;
    line-height: 48px;
    font-family: 'At Aero TRIAL';
}

.headline-accent {
    color: #e6421d;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 4vh;
    font-family: 'At Aero TRIAL';
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.hero-subheading {
    line-height: 1.4;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 28px);
}

.text-description {
    font-size: clamp(14px, 1.5vw, 20px);
    line-height: 1.5;
}

.text-line {
    margin: 0;
}

.blokbuster-label {
    line-height: 1.5;
    font-weight: bold;
    font-size: clamp(14px, 1.5vw, 20px);
}

.blokbuster-logo {
    width: clamp(100px, 20vw, 210px);
    max-height: 100%;
    flex-shrink: 0;
}

.blokbuster-header {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.store-badges {
    display: flex;
    gap: 8px;
    align-items: center;
}

.store-badge {
    width: 120px;
    height: auto;
    max-width: 100%;
    display: block;
}

.blokbuster-button {
    border-radius: 4px;
    background-color: #e6421d;
    border: 1px solid #e6421d;
    display: flex;
    justify-content: center;
    padding: 8px 16px;
    font-size: clamp(14px, 1.5vw, 18px);
    color: #fff;
    cursor: pointer;
    width: fit-content;
    align-self: flex-start;
    margin-left: 0%;
}
.blokbuster-btn-label{
    font-size: 16px;
    font-weight: bold;
    font-family: 'At Aero TRIAL';
    line-height: 24px;
    text-transform: uppercase;
}

.blokbuster-cta {
    display: flex;
    flex-direction: column;
    gap: 4vh;
    font-size: clamp(14px, 1.5vw, 20px);
    color: #d0d0d0;
}

@media (max-width: 768px) {
    .hero-banner {
        position: relative;
        top: 0;
        width: auto;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: #000;
        overflow: hidden;
        height: 700px;
    }

    .hero-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        object-position: 80% 10%;
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
        z-index: 0;
    }

    .hero-image.active {
        opacity: 1;
        z-index: 2;
    }

    .hero-image.slide-in {
        transform: translateX(100%);
        z-index: 1;
        opacity: 1;
    }

    .hero-image.animate-in {
        transform: translateX(0);
        z-index: 2;
        opacity: 1;
    }

    .hero-image.animate-out {
        transform: translateX(-100%);
        z-index: 1;
        opacity: 0;
    }

    .hero-shadow {
        position: absolute;
        top: 300px;
        display: block;
        width: 100%;
        height: 100px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        z-index: 2;
        pointer-events: none;
    }

    .hero-content {
        top: 400px;
        padding: 24px 16px;
        width: auto;
        left: unset;
        right: unset;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        position: relative;
    }

    .hero-headlines {
        display: none;
    }

    .hero-subheading {
        font-size: 20px;
        line-height: 24px;
        font-family: 'At Aero TRIAL';
        color: #fff;
        text-align: center;
    }

    .text-description {
        font-size: 16px;
        line-height: 24px;
        font-family: 'At Aero TRIAL';
        color: #fff;
        text-align: center;
    }

    .blokbuster-label {
        font-size: 16px;
        line-height: 24px;
        font-family: 'At Aero TRIAL';
        color: #d0d0d0;
        text-align: left;
    }

    .blokbuster-cta {
        align-items: center;
        gap: 16px;
    }

    .blokbuster-header {
        font-size: clamp(14px, 5vw, 18px);
        gap: 8px;
    }

    .blokbuster-logo {
        height: 20px;
        width: auto;
    }

    .store-badge {
        height: 20px;
        width: auto;
    }

    .blokbuster-button {
        padding: 10px 10px;
        font-size: 16px;
        width: 100%;
        border-radius: 4px;
        margin-left: 0%;
    }
}