body {
            background-image: url('../img/tlo.webp');
        }
        .main_page::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            min-height: 100vh;
            background-image: url('../img/left-side.webp');
            background-repeat: no-repeat;
            pointer-events: none;
        }

        .main__nav ul li:first-child {
            color: #fff;
        }

                .news_old:not(:last-child)::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -12px;
            transform: translateX(-50%);
            width: 100%;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                oklch(70.7% 0.022 261.325),
                transparent 100%
            );
        }

        .matches-label {
            width: 273px;
            clip-path: polygon(
                0 0,
                100% 0,
                80% 100%,
                0 100%
            );
        }

        @media screen and (max-width: 1280px) {
            .main_page::after {
                display: none;
            }
            .main__nav ul li:first-child {
                color: #000;
            }
        }