
        .timeline-wrapper {
            width: 100%;
            padding: 48px 0;
            position: relative;
        }

        /* Цвета бренда */
        .color-pink { background-color: #e51a75; }
        .color-cyan { background-color: #49c5e3; }
        .color-green { background-color: #00bfa5; }

        /* Линии коннекторов */
        .line-pink { background-color: #e51a75; }
        .line-cyan { background-color: #49c5e3; }
        .line-green { background-color: #00bfa5; }

        /* ========================================== */
        /* ГОРИЗОНТАЛЬНЫЙ ВИД (ПК)                    */
        /* ========================================== */
        .horizontal-view {
            position: relative;
            width: 100%;
        }

        /* Скрытие на мобильных (медиа-запрос ниже) */
        @media (max-width: 767px) {
            .horizontal-view { display: none; }
        }

        /* Лента прокрутки */
        .scroll-container {
            width: 100%;
            overflow-x: auto;
            padding: 16px 0;
            cursor: grab;
            user-select: none;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .scroll-container::-webkit-scrollbar {
            display: none;
        }
        .scroll-container.grabbing {
            cursor: grabbing;
        }

        .scroll-track {
            position: relative;
            min-width: max-content;
            display: flex;
            align-items: center;
            padding: 16px 96px;
        }

        /* Бесконечная центральная ось */
        .main-axis {
            position: absolute;
            top: 225px;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: #e2e8f0;
            z-index: 0;
            transform: translateY(-50%);
        }

        /* Колонка события */
        .timeline-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            height: 450px;
            width: 260px;
            position: relative;
            z-index: 10;
            padding: 0 12px;
            box-sizing: border-box;
            flex-shrink: 0;
        }

        /* Блоки для карточек */
        .card-slot-top, .card-slot-bottom {
            height: 180px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .card-slot-top {
            justify-content: flex-end;
            position: relative;
            top: -25px;
        }
        .card-slot-bottom {
            justify-content: flex-start;
        }

        /* Плашка события */
        .event-card {
            width: 100%;
            color: #ffffff;
            padding: 16px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.6;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            height: 96px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-sizing: border-box;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .event-card:hover {
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        }

        /* Центральная зона (Ось и коннекторы) */
        .center-zone {
            height: 90px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Вертикальные сплошные линии */
        .connector-top {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            height: 45px;
            width: 2px;
            z-index: 0;
        }
        .connector-bottom {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            height: 45px;
            width: 2px;
            z-index: 0;
        }

        /* Текст даты */
        .date-label {
            position: absolute;
            font-size: 12px;
            font-weight: 800;
            color: #1e293b;
            letter-spacing: -0.02em;
            text-align: center;
            white-space: nowrap;
            z-index: 10;
            padding: 0 8px;
            background-color: #f8fafc;
        }
        .date-label.pos-top { top: -10px; }
        .date-label.pos-bottom { top: 54px; }

        /* Узлы (Кругляшки) */
        .timeline-dot {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 4px solid #ffffff;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            z-index: 20;
            margin-top: -17px; /* Смещение для центрирования на линии */
        }
        /* Особый первый узел */
        .timeline-dot.first-node {
            width: 44px;
            height: 44px;
            background-color: #dc2626;
            background: rgb(245, 15, 100);
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 8px;
            box-sizing: border-box;
            margin-top: -17px;
        }
        .timeline-dot.first-node svg {
            width: 20px;
            height: 20px;
            fill: #ffffff;
        }

        /* Кнопки навигации стрелок */
        .nav-btn {
            position: absolute;
            top: 225px;
            transform: translateY(-50%);
            z-index: 30;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            color: #475569;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            pointer-events: none;
        }
        .nav-btn svg {
            width: 20px;
            height: 20px;
            stroke-width: 2.5;
        }
        .nav-btn:hover {
            color: #dc2626;
            border-color: #fca5a5;
        }
        .nav-btn.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .btn-left { left: 24px; }
        .btn-right { right: 24px; }

        /* ========================================== */
        /* ВЕРТИКАЛЬНЫЙ ВИД (МОБИЛЬНЫЕ)               */
        /* ========================================== */
        .vertical-view {
            display: none;
            width: 100%;
            max-width: 576px;
            margin: 0 auto;
            padding: 0 16px;
            box-sizing: border-box;
        }
        @media (max-width: 767px) {
            .vertical-view { display: block; }
        }

        .vertical-track {
            position: relative;
            border-left: 2px solid #e2e8f0;
            margin-left: 16px;
            padding: 16px 0;
        }
        .vertical-item {
            position: relative;
            padding-left: 28px;
            margin-bottom: 32px;
        }
        .vertical-item:last-child { margin-bottom: 0; }
        
        .vertical-dot {
            position: absolute;
            left: -11px;
            top: 6px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 4px solid #ffffff;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        }
        .vertical-card {
            background-color: #ffffff;
            padding: 16px;
            border-radius: 16px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
        }
        .vertical-date {
            display: block;
            font-size: 11px;
            font-weight: 900;
            color: #1e293b;
            margin-bottom: 4px;
        }
        .vertical-title {
            margin: 0;
            font-size: 13px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.4;
        }