.zcn-announcement-overlay {
    align-items: center;
    background: rgba(11, 16, 31, .68);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 18px;
    pointer-events: none;
    position: fixed;
    transition: opacity .22s ease;
    z-index: 1000002;
}

.zcn-announcement-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.zcn-announcement-modal {
    background: #fff;
    border-radius: 26px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
    max-width: 680px;
    overflow: hidden;
    transform: translateY(14px) scale(.98);
    transition: transform .22s ease;
    width: min(100%, 680px);
}

.zcn-announcement-overlay.is-open .zcn-announcement-modal {
    transform: translateY(0) scale(1);
}

.zcn-announcement-hero {
    background: linear-gradient(135deg, #23263f 0%, #30324d 70%, #00b894 185%);
    color: #fff;
    min-height: 126px;
    padding: 24px;
    position: relative;
}

.zcn-announcement-hero.has-image {
    min-height: 210px;
}

.zcn-announcement-hero img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.zcn-announcement-hero::after {
    background: linear-gradient(135deg, rgba(35, 38, 63, .94), rgba(35, 38, 63, .55) 58%, rgba(0, 184, 148, .32));
    content: "";
    inset: 0;
    position: absolute;
}

.zcn-announcement-hero-content {
    bottom: 26px;
    left: 24px;
    position: absolute;
    right: 64px;
    z-index: 2;
}

.zcn-announcement-eyebrow {
    color: #20e3bd;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.zcn-announcement-title {
    color: #fff !important;
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 950;
    line-height: 1.1;
    margin: 0;
}

.zcn-announcement-close {
    align-items: center;
    appearance: none !important;
    background: rgba(255, 255, 255, .14) !important;
    border: 1px solid rgba(255, 255, 255, .20) !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12) !important;
    color: #fff !important;
    cursor: pointer !important;
    display: flex !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    height: 38px !important;
    justify-content: center;
    line-height: 1 !important;
    min-height: 0 !important;
    outline: none !important;
    padding: 0;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 38px !important;
    z-index: 4;
}

.zcn-announcement-close:hover {
    background: rgba(255, 255, 255, .24) !important;
    color: #fff !important;
}

.zcn-announcement-body {
    padding: 24px;
}

.zcn-announcement-content {
    color: #4d5966;
    font-size: 15px;
    line-height: 1.65;
}

.zcn-announcement-content p {
    margin: 0 0 12px;
}

.zcn-announcement-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.zcn-announcement-button {
    align-items: center;
    background: linear-gradient(135deg, #00b894 0%, #0aa88d 54%, #0f2433 155%);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(0, 184, 148, .24);
    color: #fff !important;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    min-height: 44px;
    padding: 0 20px;
    text-decoration: none !important;
}

.zcn-announcement-button--light {
    background: linear-gradient(135deg, #23263f 0%, #30324d 72%, #00b894 190%);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 10px 22px rgba(35, 38, 63, .16);
    color: #fff !important;
}

.zcn-announcement-button--light:hover {
    filter: brightness(1.06);
    color: #fff !important;
}

.zcn-announcement-progress {
    color: #7a858f;
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 640px) {
    .zcn-announcement-overlay {
        padding: 12px;
    }

    .zcn-announcement-hero,
    .zcn-announcement-hero.has-image {
        min-height: 190px;
    }

    .zcn-announcement-body {
        padding: 18px;
    }

    .zcn-announcement-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .zcn-announcement-button {
        justify-content: center;
        width: 100%;
    }
}
