        body {
            background: #000;
            color: #fff;
        }

        h1, h2, h3, h4, h5, p {
            color: #fff;
            margin-top: 0;
        }

        section {
            padding: 90px 0;
        }

        @media (max-width: 767px) {
            section {
                padding: 60px 0;
            }
        }

        .u-sheet {
            max-width: 1200px;
        }

        /* ===== КНОПКИ ===== */
        .u-btn.u-btn-rectangle {
            background: #1e88ff;
            color: #fff;
            border-radius: 8px;
            padding: 14px 24px;
            font-weight: 500;
            display: inline-block;
        }

        .u-btn.u-btn-rectangle:hover {
            background: #156fd1;
        }

        /* ===== УНИВЕРСАЛЬНЫЙ FLEX-БЛОК ===== */
        .content-row {
            display: flex;
            gap: 32px;
            align-items: flex-start;
        }

        @media (max-width: 991px) {
            .content-row {
                flex-direction: column;
            }
        }

        /* ===== КАРТИНКИ ===== */
        .media-box {
            background: #000;
            border-radius: 14px;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .media-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 14px;
        }

        /* ===== СОБЫТИЯ ===== */
        .event-card {
            background: #0f0f0f;
            border-radius: 20px;
            padding: 32px;
            margin-bottom: 40px;
        }

        .event-media {
            width: 50%;
            flex-shrink: 0;
        }

        .event-text {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        @media (max-width: 991px) {
            .event-media,
            .event-text {
                width: 100%;
            }
        }

        .event-date {
            font-size: 22px;
            opacity: .85;
        }

        .event-description {
            font-size: 14px;
            line-height: 1.7;
            opacity: .9;
        }

        /* ===== PROMOKODE / RADIO ===== */
        .section-text {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .section-media {
            width: 45%;
            flex-shrink: 0;
        }

        .section-text-wrap {
            width: 55%;
        }

        @media (max-width: 991px) {
            .section-media,
            .section-text-wrap {
                width: 100%;
            }
        }

        /* ===== CONTACTS ===== */
        .contacts a {
            display: block;
            color: #4da3ff;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #050505;
            padding: 30px 20px;
            text-align: center;
            font-size: 12px;
            color: #777;
        }

        .site-footer a {
            color: #777;
        }