/* ===== БАННЕР О ПЕРЕЕЗДЕ ===== */
.banner-announce {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: linear-gradient(135deg, #1a1a2e, #2d2b55);
    color: #e8edf5;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 2px solid #6c63ff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}
.banner-announce.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}
.banner-announce strong {
    color: #ff6584;
}
.banner-announce a {
    color: #6c63ff;
    text-decoration: underline;
    font-weight: bold;
}
.banner-announce a:hover {
    color: #ff6584;
}
.banner-announce .close-banner {
    background: none;
    border: none;
    color: #8896b0;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0 8px;
    transition: color 0.2s, transform 0.2s;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.banner-announce .close-banner:hover {
    color: #ff6584;
    transform: translateY(-50%) scale(1.2);
}
@media (max-width: 600px) {
    .banner-announce {
        font-size: 13px;
        padding: 10px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }
    .banner-announce .close-banner {
        right: 12px;
        font-size: 24px;
    }
}