.blokbuster-section {
    position: relative;
    width: 100%;
    height: 849px;
    overflow: hidden;
    color: #e6421d;
    font-family: 'At Aero TRIAL';
}

.blokbuster-bg-image {
    width: 60%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    object-position: 100px;
}


.blokbuster-dark-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.blokbuster-dark-gradient-right {
    right: 0;
}

.blokbuster-dark-gradient-left {
    left: 0;
    transform: scaleX(-1);
}

.blokbuster-content {
    position: relative;
    z-index: 5;
    max-width: 576px;
    margin-left: 50%;
    margin-right: 80px;
    margin-top: 270px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.blokbuster-heading-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blokbuster-heading {
    font-size: 56px;
    line-height: 64px;
    text-transform: capitalize;
    color: #e6421d;
}

.blokbuster-highlight {
    color: #fff;
}

.blokbuster-subtext {
    font-family: 'At Aero TRIAL';
    font-size: 16px;
    line-height: 24px;
    color: #f0f0f0;
}

/* Email Form */
.blokbuster-form .input-wrapper {
    position: relative;
    width: 460px;
    height: 56px;
    border-radius: 4px;
    background-color: #2b2b2b;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.email-input {
    border: none;
    background: transparent;
    padding: 0 24px;
    font-size: 16px;
    color: rgba(240, 240, 240, 0.9);
    width: 100%;
    height: 100%;
    outline: none;
    font-family: 'At Aero TRIAL';
}

.submit-btn {
    width: 56px;
    height: 56px;
    background-color: #e6421d;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    background-color: #d43018;
}

.submit-btn:disabled {
    background-color: #404040 !important;
    cursor: not-allowed;
    opacity: 0.3;
}

.submit-btn img {
    width: 24px;
    height: 24px;
}

/* Disclaimer Checkbox */
.disclaimer-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
}

.disclaimer-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #e6421d;
    flex-shrink: 0;
}

.disclaimer-label {
    font-family: 'At Aero TRIAL';
    font-style: italic;
    font-size: 16px;
    color: #b0b0b0;
    cursor: pointer;
    user-select: none;
}

.disclaimer-label:hover {
    color: #d0d0d0;
}

.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #e6421d;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    font-family: 'At Aero TRIAL', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.custom-alert.show {
    opacity: 1;
    pointer-events: auto;
}

.custom-alert.success {
    background-color: #28a745;
}

.custom-alert.error {
    background-color: #dc3545;
}

.hidden {
    display: none;
}
@media (max-width: 768px) {
    .blokbuster-section {
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .blokbuster-bg-image {
        position: relative;
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        border-radius: 0;
        margin-bottom: 24px;
        object-position: 0px;
    }

    .blokbuster-background-overlay,
    .blokbuster-dark-gradient-top,
    .blokbuster-dark-gradient-left,
    .blokbuster-dark-gradient-right {
        display: none;
    }

    .blokbuster-content {
        position: relative;
        margin: 0 auto;
        padding: 0 16px 64px;
        max-width: 100%;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .blokbuster-heading {
        font-size: 32px;
        line-height: 44px;
    }

    .blokbuster-subtext p {
        margin: 0 0 8px;
        font-size: 14px;
    }

    .blokbuster-form .input-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .email-input {
        padding-right: 60px;
    }

    .submit-btn {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        border-radius: 0 4px 4px 0;
    }

    .disclaimer-wrapper {
        margin-top: 12px;
    }

    .disclaimer-label {
        font-size: 11px;
        line-height: 14px;
    }
}