.s-br-system-bot__bg {
            display: none;
        }
        @media (min-width: 1025px) {
            .s-br-system-bot {
                display: flex;
                flex-direction: column;
                justify-content: center;
                box-sizing: border-box;
                position: relative;
                padding: 60px 0;
            }
            .s-br-system-bot__bg {
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                width: 48%;
                height: 100%;
                background: #000;
                z-index: 0;
            }
            .s-br-system-bot .row {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                column-gap: var(--ds-gap);
                align-items: stretch;
            }
            .s-br-system-bot .s-br__updates-img {
                grid-column: 1 / span 2;
                height: 600px !important;
                width: 100% !important;
                background: transparent !important;
            }
            .s-br-system-bot .s-br__updates-right {
                grid-column: 3 / -1;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: auto;
            }
        }
        @media (max-width: 1024px) {
            .s-br-system-bot {
                padding-top: 0;
                padding-bottom: 60px;
            }
            .s-br-system-bot .s-br__updates-img {
                height: 400px !important;
                width: 100% !important;
                background: #000 !important;
            }
            .s-br-system-bot .s-br__updates-right {
                margin-top: var(--ds-space-4);
                display: flex;
                flex-direction: column;
                gap: var(--ds-space-3);
            }
        }

        /* Message notifications styles */
        .s-br__updates-img {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
        }

        .msg-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 24px;
            width: calc(100% - 48px);
            max-width: 410px;
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, 150%) scale(0.9);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease-out;
            display: flex;
            flex-direction: column;
            gap: 16px;
            box-sizing: border-box;
        }

        .msg-card.active {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            pointer-events: auto;
        }

        .msg-card.exit {
            opacity: 0;
            transform: translate(-50%, -250%) scale(0.9);
            pointer-events: none;
        }

        .msg-card__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .msg-card__author {
            font-size: 14px;
            font-weight: 600;
            color: #1e1e1e;
            opacity: 0.5;
            font-family: var(--font-heading), sans-serif;
            letter-spacing: -0.18px;
        }

        .msg-card__dot {
            width: 12px;
            height: 12px;
            background: #fa3433;
            border-radius: 50%;
        }

        .msg-card__body {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.45;
            color: #1e1e1e;
            opacity: 0.9;
            font-family: var(--font-body), sans-serif;
            letter-spacing: -0.18px;
        }

        @media (max-width: 768px) {
            .msg-card__author {
                font-size: 12px;
            }
            .msg-card__body {
                font-size: 14px;
            }
        }
    