.air-announcement-open {
    overflow: hidden;
}

.air-announcement-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(2, 6, 23, .58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.air-announcement-overlay.is-visible {
    display: flex;
}

.air-announcement-overlay.is-closing .air-announcement-modal {
    animation: airAnnouncementOut .18s ease forwards;
}

.air-announcement-modal {
    position: relative;
    width: min(410px, 100%);
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, .95);
    box-shadow:
        0 24px 70px rgba(2, 6, 23, .28),
        0 0 0 1px rgba(255, 255, 255, .45) inset;
    transform: translateY(14px) scale(.96);
    opacity: 0;
    animation: airAnnouncementIn .24s ease forwards;
}

html[data-theme="dark"] .air-announcement-modal {
    background: #0f172a;
    border-color: rgba(148, 163, 184, .18);
    box-shadow:
        0 26px 75px rgba(0, 0, 0, .48),
        0 0 0 1px rgba(255, 255, 255, .04) inset;
}

.air-announcement-modal::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.air-announcement-modal::after {
    content: "";
    position: absolute;
    right: -58px;
    top: -58px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .10);
    pointer-events: none;
}

.air-announcement-success::before {
    background: linear-gradient(90deg, #15803d, #22c55e);
}

.air-announcement-warning::before {
    background: linear-gradient(90deg, #b45309, #f59e0b);
}

.air-announcement-info::before {
    background: linear-gradient(90deg, #0369a1, #38bdf8);
}

.air-announcement-promo::before {
    background: linear-gradient(90deg, #7c3aed, #ec4899);
}

.air-announcement-maintenance::before {
    background: linear-gradient(90deg, #991b1b, #ef4444);
}

.air-announcement-christmas::before {
    background: linear-gradient(90deg, #166534, #dc2626);
}

.air-announcement-new_year::before {
    background: linear-gradient(90deg, #1d4ed8, #f59e0b);
}

.air-announcement-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: #64748b;
    background: rgba(100, 116, 139, .10);
    transition: .22s ease;
}

.air-announcement-close:hover {
    color: #ffffff;
    background: #ef4444;
    transform: rotate(90deg);
}

html[data-theme="dark"] .air-announcement-close {
    color: #94a3b8;
    background: rgba(148, 163, 184, .12);
}

.air-announcement-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 26px 54px 14px 22px;
}

.air-announcement-mini-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #2563eb;
    background: rgba(37, 99, 235, .10);
    border: 1px solid rgba(37, 99, 235, .13);
    font-size: 18px;
}

.air-announcement-success .air-announcement-mini-icon {
    color: #16a34a;
    background: rgba(22, 163, 74, .10);
    border-color: rgba(22, 163, 74, .14);
}

.air-announcement-warning .air-announcement-mini-icon {
    color: #f59e0b;
    background: rgba(245, 158, 11, .12);
    border-color: rgba(245, 158, 11, .15);
}

.air-announcement-maintenance .air-announcement-mini-icon {
    color: #ef4444;
    background: rgba(239, 68, 68, .11);
    border-color: rgba(239, 68, 68, .15);
}

.air-announcement-promo .air-announcement-mini-icon {
    color: #a855f7;
    background: rgba(168, 85, 247, .11);
    border-color: rgba(168, 85, 247, .15);
}

.air-announcement-info .air-announcement-mini-icon {
    color: #0284c7;
    background: rgba(14, 165, 233, .11);
    border-color: rgba(14, 165, 233, .15);
}

.air-announcement-head-text {
    min-width: 0;
    flex: 1;
}

.air-announcement-head-text span {
    display: block;
    margin-bottom: 3px;
    color: #64748b;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.air-announcement-head-text strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    font-weight: 950;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

html[data-theme="dark"] .air-announcement-head-text span {
    color: #94a3b8;
}

html[data-theme="dark"] .air-announcement-head-text strong {
    color: #f8fafc;
}

.air-announcement-emoji {
    position: absolute;
    right: 55px;
    top: 25px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, .08);
    font-size: 18px;
}

.air-announcement-body {
    position: relative;
    z-index: 2;
    padding: 10px 22px 20px;
}

.air-announcement-body h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -.6px;
}

html[data-theme="dark"] .air-announcement-body h2 {
    color: #f8fafc;
}

.air-announcement-body p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.7;
}

html[data-theme="dark"] .air-announcement-body p {
    color: #a8bddb;
}

.air-announcement-actions {
    position: relative;
    z-index: 2;
    padding: 0 22px 22px;
}

.air-announcement-btn {
    width: 100%;
    height: 46px;
    border: 0;
    border-radius: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(37, 99, 235, .24);
    transition: .22s ease;
}

.air-announcement-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(37, 99, 235, .32);
}

.air-announcement-btn:active {
    transform: translateY(0);
}

.air-announcement-success .air-announcement-btn {
    background: linear-gradient(135deg, #15803d, #22c55e);
    box-shadow: 0 14px 30px rgba(22, 163, 74, .22);
}

.air-announcement-warning .air-announcement-btn {
    background: linear-gradient(135deg, #b45309, #f59e0b);
    box-shadow: 0 14px 30px rgba(245, 158, 11, .22);
}

.air-announcement-maintenance .air-announcement-btn {
    background: linear-gradient(135deg, #991b1b, #ef4444);
    box-shadow: 0 14px 30px rgba(239, 68, 68, .22);
}

.air-announcement-promo .air-announcement-btn {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    box-shadow: 0 14px 30px rgba(168, 85, 247, .22);
}

.air-announcement-christmas .air-announcement-btn {
    background: linear-gradient(135deg, #166534, #dc2626);
    box-shadow: 0 14px 30px rgba(220, 38, 38, .22);
}

.air-announcement-new_year .air-announcement-btn {
    background: linear-gradient(135deg, #1d4ed8, #f59e0b);
    box-shadow: 0 14px 30px rgba(245, 158, 11, .22);
}

@keyframes airAnnouncementIn {
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes airAnnouncementOut {
    to {
        transform: translateY(10px) scale(.96);
        opacity: 0;
    }
}

@media (max-width: 520px) {
    .air-announcement-overlay {
        padding: 14px;
        align-items: center;
    }

    .air-announcement-modal {
        width: min(360px, 100%);
        border-radius: 20px;
    }

    .air-announcement-head {
        padding: 24px 50px 12px 18px;
        gap: 10px;
    }

    .air-announcement-mini-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 14px;
        font-size: 16px;
    }

    .air-announcement-emoji {
        display: none;
    }

    .air-announcement-body {
        padding: 8px 18px 18px;
    }

    .air-announcement-body h2 {
        font-size: 22px;
    }

    .air-announcement-body p {
        font-size: 12.5px;
    }

    .air-announcement-actions {
        padding: 0 18px 20px;
    }

    .air-announcement-btn {
        height: 44px;
        border-radius: 14px;
    }

    .air-announcement-close {
        top: 13px;
        right: 13px;
        width: 32px;
        height: 32px;
        border-radius: 11px;
    }
}

.air-announcement-easter::before {
    background: linear-gradient(90deg, #f97316, #facc15);
}

.air-announcement-easter .air-announcement-mini-icon {
    color: #f97316;
    background: rgba(249, 115, 22, .12);
    border-color: rgba(249, 115, 22, .16);
}

.air-announcement-easter .air-announcement-btn {
    background: linear-gradient(135deg, #f97316, #facc15);
    box-shadow: 0 14px 30px rgba(249, 115, 22, .22);
}

.air-announcement-valentine::before {
    background: linear-gradient(90deg, #be123c, #ec4899);
}

.air-announcement-valentine .air-announcement-mini-icon {
    color: #e11d48;
    background: rgba(225, 29, 72, .12);
    border-color: rgba(225, 29, 72, .16);
}

.air-announcement-valentine .air-announcement-btn {
    background: linear-gradient(135deg, #be123c, #ec4899);
    box-shadow: 0 14px 30px rgba(225, 29, 72, .22);
}

.air-announcement-ramadan::before,
.air-announcement-eid::before {
    background: linear-gradient(90deg, #047857, #10b981);
}

.air-announcement-ramadan .air-announcement-mini-icon,
.air-announcement-eid .air-announcement-mini-icon {
    color: #059669;
    background: rgba(5, 150, 105, .12);
    border-color: rgba(5, 150, 105, .16);
}

.air-announcement-ramadan .air-announcement-btn,
.air-announcement-eid .air-announcement-btn {
    background: linear-gradient(135deg, #047857, #10b981);
    box-shadow: 0 14px 30px rgba(5, 150, 105, .22);
}

.air-announcement-black_friday::before {
    background: linear-gradient(90deg, #020617, #475569);
}

.air-announcement-black_friday .air-announcement-mini-icon {
    color: #111827;
    background: rgba(15, 23, 42, .10);
    border-color: rgba(15, 23, 42, .14);
}

html[data-theme="dark"] .air-announcement-black_friday .air-announcement-mini-icon {
    color: #f8fafc;
    background: rgba(248, 250, 252, .10);
    border-color: rgba(248, 250, 252, .14);
}

.air-announcement-black_friday .air-announcement-btn {
    background: linear-gradient(135deg, #020617, #475569);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .26);
}

.air-announcement-independence::before {
    background: linear-gradient(90deg, #dc2626, #facc15, #16a34a);
}

.air-announcement-independence .air-announcement-mini-icon {
    color: #16a34a;
    background: rgba(22, 163, 74, .12);
    border-color: rgba(22, 163, 74, .16);
}

.air-announcement-independence .air-announcement-btn {
    background: linear-gradient(135deg, #dc2626, #facc15, #16a34a);
    box-shadow: 0 14px 30px rgba(22, 163, 74, .22);
}