.notify {
    position: fixed;
    z-index: 999999;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
}

.notify__item {
    position: relative;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: center;
}

.notify__item.show {
    opacity: 1;
    transform: translateY(0);
}

.notify__item.success {
    color: #2de482;
}
.notify__item.error {
    color: #ff4c4c;
}
.notify__item.info {
    color: #4ca1ff;
}
.notify__item.default {
    color: #ccc;
}

.notify__item-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    background-color: #1e1e2f;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    min-width: 0;
    width: 100%;
    max-width: 400px;
    font-size: 14px;
    color: #fff;
    box-sizing: border-box;
    position: relative;
}

.notify__aside {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notify__title {
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
}

.notify__message {
    color: #d0d0d0;
    font-size: 14px;
    word-break: break-word;
    line-height: 1.4;
}

.notify__close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}
.notify__close:hover {
    color: #fff;
}

/* ✅ Мобильная адаптация */
@media (max-width: 480px) {
    .notify__item-wrap {
        padding: 14px 16px 14px 16px;
        font-size: 13px;
        max-width: 100%;
    }

    .notify__message {
        font-size: 13px;
    }

    .notify__title {
        font-size: 14px;
    }

    .notify__close {
        font-size: 16px;
    }
}
