/* ===== УВЕДОМЛЕНИЕ О РАЗРАБОТКЕ ===== */
.dev-notice-banner {
    display: flex;
    align-items: center;
    gap: 1vw;
    left: 1vw;
    top: 0.5vw;
    background: rgba(251, 191, 36, 0.06);
    border: 0.1vw solid rgba(251, 191, 36, 0.2);
    border-radius: 1.2vw;
    padding: 57px 1.5vw;
    margin-bottom: 2vw;
    animation: slideDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}

.dev-notice-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.3vw;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
}

.dev-notice-icon {
    width: 2vw;
    height: 2vw;
    color: #fbbf24;
    flex-shrink: 0;
}

.dev-notice-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3vw;
}

.dev-notice-text strong {
    font-size: 1.1vw;
    color: #fbbf24;
    font-weight: 700;
}

.dev-notice-text span {
    font-size: 0.9vw;
    color: #94A3B8;
    line-height: 1.4;
}

.dev-notice-close {
    background: transparent;
    border: none;
    color: #6D747E;
    cursor: pointer;
    padding: 0.5vw;
    border-radius: 0.5vw;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev-notice-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.dev-notice-close svg {
    width: 1.2vw;
    height: 1.2vw;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-1.5vw); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
@media (max-width: 430px) {
    .dev-notice-banner {
        gap: 3vw;
        left: 0;
        top: 0;
        background: rgba(251, 191, 36, 0.08);
        backdrop-filter: blur(12px) saturate(1.3);
        -webkit-backdrop-filter: blur(12px) saturate(1.3);
        border: 0.2vw solid rgba(251, 191, 36, 0.25);
        border-radius: 2vw;
        padding: 3.5vw 4vw;
        margin-bottom: 4vw;
        margin-left: 0;
        margin-right: 0;
        animation: slideDownMobile 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        box-shadow: 0 0.8vw 2vw rgba(251, 191, 36, 0.08);
    }

    .dev-notice-banner::before {
        width: 0.6vw;
        border-radius: 0 0.6vw 0.6vw 0;
    }

    .dev-notice-icon {
        width: 5vw;
        height: 5vw;
        color: #fbbf24;
        flex-shrink: 0;
    }

    .dev-notice-text {
        gap: 0.8vw;
    }

    .dev-notice-text strong {
        font-size: 3.2vw;
        color: #fbbf24;
        font-weight: 700;
        letter-spacing: -0.05vw;
    }

    .dev-notice-text span {
        font-size: 2.6vw;
        color: #94A3B8;
        line-height: 1.5;
    }

    .dev-notice-close {
        padding: 1.5vw;
        border-radius: 1.5vw;
        flex-shrink: 0;
    }

    .dev-notice-close:active {
        background: rgba(255, 255, 255, 0.08);
    }

    .dev-notice-close svg {
        width: 3vw;
        height: 3vw;
    }

    @keyframes slideDownMobile {
        from { opacity: 0; transform: translateY(-3vw); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 768px) {
    .dev-notice-banner {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        left: 0;
        top: 0;
        background: rgba(251, 191, 36, 0.08);
        backdrop-filter: blur(12px) saturate(1.3);
        -webkit-backdrop-filter: blur(12px) saturate(1.3);
        border: 1px solid rgba(251, 191, 36, 0.25);
        border-radius: 12px;
        padding: 12px 14px;
        margin-bottom: 16px;
        animation: slideDownMobile 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        box-shadow: 0 4px 16px rgba(251, 191, 36, 0.08);
        position: relative;
        overflow: hidden;
    }

    .dev-notice-banner::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, #fbbf24, #f59e0b);
        border-radius: 0 3px 3px 0;
    }

    .dev-notice-icon {
        width: 22px;
        height: 22px;
        color: #fbbf24;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .dev-notice-text {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .dev-notice-text strong {
        font-size: 14px;
        color: #fbbf24;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: normal;
    }

    .dev-notice-text span {
        font-size: 12px;
        color: #94a3b8;
        line-height: 1.4;
    }

    .dev-notice-close {
        background: transparent;
        border: none;
        color: #6d747e;
        cursor: pointer;
        padding: 6px;
        margin: -4px -4px 0 0;
        border-radius: 8px;
        transition: background 0.2s ease, color 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        min-width: 32px;
        min-height: 32px;
    }

    .dev-notice-close:active {
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
    }

    .dev-notice-close svg {
        width: 16px;
        height: 16px;
    }

    @keyframes slideDownMobile {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}