   			.bet-btn{
            	cursor: pointer !important;
            }
            
            /******************************Events - odds********************/
            .odds-container {
                display: flex;
                gap: 10px; /* Отступ между кнопками */
                margin-top: 15px;
                flex-wrap: wrap; /* Чтобы на мобилках переносились */
            }

            .odd-item {
                flex: 1; /* Растягивает кнопки поровну */
                min-width: 80px;
                background: #f8f9fa; /* Светлый фон */
                border: 1px solid #e0e0e0;
                border-radius: 6px;
                padding: 8px 5px;
                display: flex;
                flex-direction: column; /* Текст над числом */
                align-items: center;
                cursor: pointer;
                transition: all 0.2s ease-in-out;
            }

            .odd-item:hover {
                background: #e9ecef;
                border-color: #007bff;
                transform: translateY(-2px);
            }

            .odd-display {
                font-size: 12px;
                color: #6c757d;
                text-transform: uppercase;
                font-weight: 600;
                margin-bottom: 4px;
            }

            .odd-value {
                font-size: 16px;
                font-weight: 700;
                color: #212529;
            }

            .odd-item.blocked {
                opacity: 0.5;
                cursor: not-allowed;
                background: #eee;
                filter: grayscale(1);
            }

            .odd-item.blocked .odd-value::after {
                content: " 🔒"; 
                font-size: 12px;
            }
   
   /******************************Events - View 1********************/
            .view-1.event-cards {
            display: grid;
            gap: 24px;
            grid-template-columns: 1fr; /* по умолчанию (мобильный) */
            margin-bottom: 32px;
            align-items: stretch;
            }

            /**media**/
            @media (min-width: 640px) {
            .view-1.event-cards {
                grid-template-columns: repeat(2, 1fr); /* планшет */
            }
            }

            @media (min-width: 1024px) {
            .view-1.event-cards {
                grid-template-columns: repeat(3, 1fr); /* десктоп */
            }
            }

            .view-1 .event-card {
            display: flex;
            font-size:16px;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 15px;
            background: #fff;
            color: black;
            text-align: center;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            }

            .view-1 .event-card h3 {
            color: #000;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            }

            .view-1 .event-card .tournament {
            font-size: 14px;
            color: #777;
            margin-bottom: 10px;
            }

            .view-1 .event-card .teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin: 10px 0;
            }

            .view-1 .event-card .team-logo,
            .view-1 .event-card .tour-logo {
            width: 30px;
            height: 30px;
            object-fit: contain;
            }

            .view-1 .event-card .date {
            margin: 10px 0;
            font-size: 14px;
            color: #444;
            }

            .view-1 .event-card .bet-btn {
            margin-top:15px;
            display: inline-block;
            background: #d3e512;
            color: #000000;
            border: 2px solid #d3e512;
            padding: 8px 15px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.2s;
            cursor: pointer;
            }

            .view-1 .event-card .bet-btn:hover {
            background: transparent;
            }

            .view-1 .tour-logo {
            margin: 0 auto;
            }

            .view-1 .team {
                display: flex;
                align-items: center;
                gap:5px;
            }

/*
            @media screen and (max-width: 480px) {
            .view-1 .event-card .teams {
                flex-direction: column;
            }
            }
*/

            /******************************Events - View 2 ********************/
            .view-2.event-cards {
            display: grid;
            gap: 24px;
            grid-template-columns: 1fr; /* по умолчанию (мобильный) */
            margin-bottom: 32px;
            align-items: stretch;
            }


            /**media**/
            @media (min-width: 640px) {
            .view-2.event-cards {
                grid-template-columns: repeat(2, 1fr); /* планшет */
            }
            }

            @media (min-width: 1024px) {
            .view-2.event-cards {
                grid-template-columns: repeat(3, 1fr); /* десктоп */
            }
            }

            .view-2 .event-card {
                /* width: calc(25% - 12px); */
                border: 1px solid #ddd;
                border-radius: 10px;
                background: #fff;
                text-align: center;
                padding: 15px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.06);
                transition: transform 0.3s, box-shadow 0.3s;
                scroll-snap-align: start;
                flex: 0 0 auto;
            }

            .view-2 .event-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            }

            
            .view-2 h3 {
                color: #e53935;
                font-size: 18px;
                margin: 0 0 5px 0;
            }

            .view-2 .team-logo {
                width: 30px;
                height: 30px;
                object-fit: cover;
                max-width: 100%;
            }

            .view-2 .tournament {
                font-size: 20px;
                font-weight: bold;
                color: #388e3c;
                margin-bottom: 10px;
            }

            .view-2 .bet-btn {
                margin-top:15px;
                background: #d3e512;
                border: 2px solid #d3e512;
                /* border: none; */
                padding: 10px 15px;
                color: #000;
                font-weight: bold;
                font-size: 12px;
                border-radius: 5px;
                cursor: pointer;
                text-decoration: none;
                display: inline-block;
                margin-bottom: 5px;
                transition: background 0.2s;
            }

            .view-2 .bet-btn:hover {
                background: transparent;
            }

             .view-2 .bet-btn:focus {
                box-shadow: unset;
            }

            .view-2 .date {
                font-size: 11px;
                color: #888;
            }

            .view-2 .team {
                display: flex;
                align-items: center;
                gap:5px;
            }

             .view-2 .event-card .teams {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                margin: 10px 0;
            }



            @media screen and (max-width: 480px) {
        
                .view-2 .event-card .teams {
                    flex-direction: column;
                }
            }

            /* ---------- View-3 ---------- */
            .event-cards.view-3 {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
                gap: 20px;
                padding: 10px;
                box-sizing: border-box;
                overflow: hidden;
            }

            .event-cards.view-3 .event-card {
                background: #fff;
                border: 1px solid #ddd;
                border-radius: 6px;
                overflow: hidden;
                height: auto;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
                transition: transform 0.2s ease;
                padding: 15px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

            .event-cards.view-3 .event-card:hover {
                transform: translateY(-4px);
            }

            .event-cards.view-3 .event-card h3 {
                font-size: 16px;
                font-weight: bold;
                margin-bottom: 8px;
            }

            .event-cards.view-3 .event-card .tournament {
                font-size: 14px;
                color: #666;
                margin-bottom: 10px;
            }

            .event-cards.view-3 .event-card .teams {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                flex-wrap: wrap;
                margin-bottom: 10px;
                text-align: center;
            }

            .view-3 .team {
                display: flex;
                align-items: center;
                gap:5px;
            }

             .view-3 .event-card .teams {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                margin: 10px 0;
            }

            .event-cards.view-3 .event-card .team-logo {
                width: 30px;
                height: 30px;
                object-fit: contain;
            }

            .event-cards.view-3 .event-card .date {
                font-size: 14px;
                margin-bottom: 12px;
                color: #333;
            }

            .view-3 .bet-btn {
                margin-top: 15px;
                padding: 2px;
                cursor: pointer;
                background: #d3e512;
                border: 2px solid #d3e512;
                text-align: center;
                text-decoration: unset;
            }

            .view-3 .bet-btn:focus {
                box-shadow: unset;
            }

            .view-3 .bet-btn:hover {
                background: transparent;
            }

            /* ========== View-4 ========== */
            .view-4 {
            display: grid;
            gap: 24px;
            grid-template-columns: 1fr; /* по умолчанию (мобильный) */
            position: relative;
            padding: 20px 0;
             overflow: hidden;
            }

            
            /**media**/
            @media (min-width: 640px) {
            .view-4.event-cards {
                grid-template-columns: repeat(2, 1fr); /* планшет */
            }
            }

            @media (min-width: 1024px) {
            .view-4.event-cards {
                grid-template-columns: repeat(3, 1fr); /* десктоп */
            }
            }


            .view-4 .swiper-wrapper {
            display: flex;
            gap: 8px;
            }

            .view-4 .event-card {
            flex: 0 0 calc((100% - 48px) / 4);
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.2s ease;
            }

            .view-4 .event-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            }

            .view-4 .tournament {
            font-size: 14px;
            color: #666;
            margin-bottom: 12px;
            }

            .view-4 .teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 6px;
            margin-bottom: 10px;
            font-weight: 500;
            }

            .view-4 .team {
                display: flex;
                align-items: center;
                gap:5px;
            }

            .view-4 .team-logo {
            width: 24px;
            height: 24px;
            object-fit: contain;
            }

            .view-4 .date {
            font-size: 13px;
            color: #444;
            margin-bottom: 12px;
            }

            .view-4 .bet-btn {
            margin-top:15px;
            padding: 8px 14px;
            background: #d3e512;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
            }

            .view-4 .bet-btn:hover {
            border: 2px solid #d3e512;
            background: transparent;
            color: black;
            }
           
            /* ========== Скролл ========== */
            div.event-cards.scroll {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                gap: 15px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;

                scrollbar-color: #4CAF50 #e0f5e0;
                scrollbar-width: thin;
            }

            div.event-cards.scroll::-webkit-scrollbar {
                height: 8px;
            }

            div.event-cards.scroll::-webkit-scrollbar-track {
                background: #e0f5e0;
                border-radius: 10px;
            }

            div.event-cards.scroll::-webkit-scrollbar-thumb {
                background: #4CAF50;
                border-radius: 10px;
            }

            div.event-cards.scroll::-webkit-scrollbar-thumb:hover {
                background: #43a047;
            }

             div.event-cards.scroll .event-card {
                min-width: calc(30% - 12px);
            }

            @media screen and (max-width: 767px) {
                div.event-cards.scroll .event-card {
                    min-width: calc(48% - 12px);
                }
            }

            @media screen and (max-width: 480px) {
                div.event-cards.scroll .event-card {
                    min-width: calc(65% - 12px);
                }
            }


            /* ---------- View-3 (горизонтальный слайдер) ---------- */
            .slider-1 .custom-nav {
                width: 40px;
                height: 60px;
                background: #3a3a3a;
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10;
                cursor: pointer;
            }

            .slider-1 .swiper-button-prev.custom-nav {
                left: 0;
                border-radius: 0 6px 6px 0;
            }

            .slider-1 .swiper-button-next.custom-nav {
                right: 0;
                border-radius: 6px 0 0 6px;
            }

            .slider-1 .custom-nav::after {
                content: '';
                width: 22px;
                height: 44px;
                background-color: white;
                mask-size: contain;
                mask-repeat: no-repeat;
                mask-position: center;
                -webkit-mask-size: contain;
                -webkit-mask-repeat: no-repeat;
                -webkit-mask-position: center;
            }

            .slider-1 .swiper-button-prev.custom-nav::after {
                mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M15 18L9 12L15 6" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
                -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M15 18L9 12L15 6" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
            }

            .slider-1 .swiper-button-next.custom-nav::after {
                mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9 6L15 12L9 18" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
                -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9 6L15 12L9 18" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
            }

            .slider-1 .custom-nav.swiper-button-disabled {
                display: none !important;
            }

            /* ----------  (Cлайдер пагинация) ---------- */

            /* Стили стрелок */
            .slider-2 .custom-nav {
                width: 40px;
                height: 40px;
                background: rgba(0, 0, 0, 0.6);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10;
                cursor: pointer;
                transition: background 0.3s ease;
                box-shadow: 0 2px 6px rgba(0,0,0,0.3);
            }

            /* SVG внутри */
            .slider-2 .custom-nav::after {
                content: '';
                display: block;
                width: 14px;
                height: 14px;
                background-color: white;
                mask-size: contain;
                mask-repeat: no-repeat;
                mask-position: center;
                -webkit-mask-size: contain;
                -webkit-mask-repeat: no-repeat;
                -webkit-mask-position: center;
            }

            .slider-2 .swiper-button-prev.custom-nav::after {
                mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M15 18L9 12L15 6" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
                -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M15 18L9 12L15 6" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
            }

            .slider-2 .swiper-button-next.custom-nav::after {
                mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9 6L15 12L9 18" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
                -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9 6L15 12L9 18" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
            }

            /* Пагинация */
             .slider-2 .swiper-wrapper {
                gap: 8px;
                padding-bottom: 40px;
            }

            .slider-2.event-cards{
                padding-bottom: 32px;
            }


            .slider-2 .swiper-pagination {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 8px;
                padding-top: 16px;
                padding-bottom: 12px;
                bottom: 0!important;
            }

            .slider-2 .swiper-pagination-bullet {
                width: 8px;
                height: 8px;
                background-color: #c5c5c5;
                border-radius: 50%;
                opacity: 1;
                transition: all 0.3s ease;
            }

            .slider-2 .swiper-pagination-bullet-active {
                width: 22px;
                height: 8px;
                background-color: #5c667b;
                border-radius: 4px;
            }


            .event-cards .swiper-wrapper {
                display: flex;
                transition-property: transform;
                box-sizing: content-box;
            }

            .event-cards .swiper-slide {
                flex-shrink: 0;
                width: auto; /* или конкретное значение */
                box-sizing: border-box;
            }

            /* Аккордеон */
            .accordion {
                margin-bottom: 10px;
                border-radius: 6px;
                overflow: hidden;
                background-color: #003d2e;
                border: 1px solid #00ff80;
            }

            .accordion-header {
                color:#fff;
                padding: 15px 20px;
                cursor: pointer;
                font-size: 18px;
                position: relative;
                font-weight: bold;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            

            .chevron {
                width: 12px;
                height: 12px;
                transition: transform 0.3s;
                stroke: #d7ff00;
                stroke-width: 3;
                fill: none;
            }

            .accordion-header.active .chevron {
                transform: rotate(180deg);
            }

            .accordion-content {
                display: none;
                padding: 15px 25px;
                background-color: #004d3e;
            }

            /* ========== Schedule day tabs ========== */
            .event-schedule {
                margin: 0 0 8px;
                max-width: none;
            }

            .schedule-nav {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 6px;
                margin: 0 0 12px;
                padding: 0;
                background: none;
                border: 0;
                border-radius: 0;
            }

            .schedule-tabs {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 6px;
                width: auto;
                max-width: 100%;
                overflow-x: auto;
                padding: 0;
                margin: 0;
                background: transparent;
                border: 0;
                border-radius: 0;
                box-sizing: border-box;
                scrollbar-width: none;
            }

            .schedule-league-filter {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 6px;
                width: auto;
                max-width: 100%;
                overflow-x: auto;
                padding: 0;
                margin: 0 0 16px;
                background: transparent;
                border: 0;
                box-sizing: border-box;
                scrollbar-width: none;
            }

            .schedule-tabs::-webkit-scrollbar,
            .schedule-league-filter::-webkit-scrollbar {
                height: 0;
            }

            .schedule-tab,
            .schedule-league-chip {
                appearance: none;
                -webkit-appearance: none;
                flex: 0 0 auto;
                width: auto;
                min-width: 0;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: var(--radius-button, 50px);
                border: 1px solid transparent;
                outline: none;
                box-shadow: none !important;
                background: rgba(255, 255, 255, 0.08);
                color: rgba(255, 255, 255, 0.72);
                font-family: Gilroy, Montserrat, sans-serif;
                cursor: pointer;
                white-space: nowrap;
                text-align: center;
                transition: background-color 0.15s ease, color 0.15s ease;
            }

            .schedule-tab {
                flex-direction: column;
                gap: 2px;
                min-width: 72px;
                min-height: 46px;
                padding: 6px 12px;
                font-weight: 700;
                font-size: 15px;
                line-height: 1.1;
            }

            .schedule-tab span {
                font-weight: 500;
                font-size: 12px;
                line-height: 1;
                opacity: 1;
                color: #8b95ad;
            }

            .schedule-league-chip {
                min-height: 30px;
                padding: 4px 10px;
                font-weight: 600;
                font-size: 12px;
                line-height: 1.15;
            }

            .schedule-tab:hover,
            .schedule-league-chip:hover {
                background: rgba(255, 255, 255, 0.1);
                color: #fff;
            }

            .schedule-tab:hover span {
                color: #c5cde0;
            }

            .schedule-tab.active,
            .schedule-league-chip.active {
                background: var(--fon-button, #1B9DD9);
                color: var(--color-button, #fff);
            }

            .schedule-tab.active span {
                color: rgba(255, 255, 255, 0.82);
            }

            .schedule-tab.active:hover,
            .schedule-league-chip.active:hover {
                background: var(--fon-button-hover, #1785B8);
            }

            .schedule-tab--today:not(.active) {
                color: #e8eefc;
            }

            .schedule-panel {
                display: none;
            }

            .schedule-panel.active {
                display: block;
                animation: mapi-schedule-fade 0.25s ease;
            }

            .schedule-empty {
                margin: 8px 0 0;
                text-align: center;
                color: #8b95ad;
                font-size: 14px;
                font-weight: 500;
            }

            @keyframes mapi-schedule-fade {
                from { opacity: 0; transform: translateY(4px); }
                to { opacity: 1; transform: none; }
            }

            .schedule-day-heading {
                display: none;
            }

            /* ========== Schedule: compact fixture list (grouped by tournament, one row per match) ========== */
            .schedule-list {
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            .schedule-league-group.is-hidden {
                display: none;
            }

            .schedule-list:not(.is-expanded) .schedule-row.is-overflow {
                display: none;
            }

            .schedule-list:not(.is-expanded) .schedule-league-group:not(:has(.schedule-row:not(.is-overflow))) {
                display: none;
            }

            .schedule-show-more {
                display: block;
                margin: 18px auto 0;
                padding: 10px 28px;
                border: 0 !important;
                outline: none;
                box-shadow: none;
                border-radius: var(--radius-button, 50px);
                background: var(--fon-button, #1B9DD9);
                color: var(--color-button, #fff);
                font-family: inherit;
                font-size: 14px;
                font-weight: 700;
                cursor: pointer;
            }

            .schedule-show-more[hidden] {
                display: none !important;
            }

            .schedule-show-more:hover {
                background: var(--fon-button-hover, #1785B8);
            }

            .schedule-league-group {
                background: var(--guide-card-bg, #263554);
                border: 1px solid var(--guide-card-border, rgba(27, 157, 217, 0.4));
                border-radius: var(--radius-site, 12px);
                overflow: hidden;
                padding: 10px 10px 6px;
            }

            .schedule-league-group + .schedule-league-group {
                margin-top: 12px;
            }

            .schedule-league-heading {
                font-family: Gilroy, Montserrat, sans-serif;
                font-size: 11px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.06em;
                color: rgba(255, 255, 255, 0.55);
                margin: 0;
                padding: 2px 6px 8px;
                background: none;
                border: none;
            }

            .schedule-row {
                display: grid;
                grid-template-columns: 44px minmax(0, 1fr) auto;
                align-items: center;
                column-gap: 12px;
                min-height: 0;
                margin: 0;
                padding: 8px 8px;
                border-radius: 8px;
                background: transparent;
                border: 0;
                border-bottom: 1px solid rgba(255,255,255,0.06);
                transition: background-color 0.15s ease, border-color 0.15s ease;
            }

            .schedule-league-group .schedule-row:last-child {
                border-bottom: 0;
            }

            .schedule-row:hover {
                background: rgba(27, 157, 217, 0.08);
                border-bottom-color: transparent;
            }

            .schedule-row__time { grid-column: 1; }
            .schedule-row__matchup { grid-column: 2; }
            .schedule-row__actions { grid-column: 3; }

            .schedule-row__actions {
                display: flex;
                align-items: center;
                gap: 8px;
                height: auto;
                overflow: visible;
                border-radius: 0;
                background: none;
            }

            .schedule-row__time {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                align-self: stretch;
                height: auto;
                font-size: 13px;
                font-weight: 600;
                line-height: 1;
                color: #cfd8ea;
                text-align: left;
                font-variant-numeric: tabular-nums;
            }

            .schedule-row__matchup {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                justify-content: center;
                gap: 6px;
                min-width: 0;
            }

            .schedule-row__team {
                display: flex;
                align-items: center;
                gap: 8px;
                min-width: 0;
            }

            .schedule-row__logo {
                display: flex;
                align-items: center;
                justify-content: center;
                flex: 0 0 22px;
                width: 22px;
                height: 22px;
            }

            .schedule-row__logo .team-logo,
            .schedule-row__logo .team-logo--empty {
                width: 22px;
                height: 22px;
                flex-shrink: 0;
                border-radius: 0;
                background: transparent;
                padding: 0;
                object-fit: contain;
            }

            .schedule-row__name {
                flex: 1 1 auto;
                min-width: 0;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                font-size: 14px;
                font-weight: 600;
                line-height: 22px;
                color: #e6eaf3;
                text-align: left;
            }

            .schedule-row__odds {
                display: flex;
                flex-shrink: 0;
                height: 52px;
            }

            .schedule-row__odds .odds-container {
                display: grid;
                grid-template-columns: repeat(3, 56px);
                margin-top: 0;
                flex-wrap: nowrap;
                align-items: stretch;
                gap: 0;
                height: 52px;
                overflow: hidden;
                background: rgba(24, 36, 60, 0.45);
                border: 1px solid rgba(255,255,255,0.08);
                border-radius: var(--radius-site, 12px);
            }

            .schedule-row__odds .odd-item {
                flex: none;
                width: auto;
                min-width: 0 !important;
                min-height: 0;
                height: 52px;
                box-sizing: border-box;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 6px 2px;
                cursor: pointer;
                border: 0 !important;
                border-right: 1px solid rgba(255,255,255,0.10) !important;
                border-radius: 0 !important;
                background: transparent !important;
            }

            .schedule-row__odds .odd-item:last-child {
                border-right: 0 !important;
            }

            .schedule-row__odds .odd-item:hover {
                background: rgba(255,255,255,0.08) !important;
                border-color: rgba(255,255,255,0.10) !important;
            }

            .schedule-row__bet-btn,
            button.bet-btn.schedule-row__bet-btn {
                appearance: none;
                -webkit-appearance: none;
                display: inline-flex !important;
                align-items: center;
                justify-content: center;
                width: auto !important;
                min-width: 88px;
                max-width: none;
                height: 36px !important;
                min-height: 36px !important;
                padding: 0 20px !important;
                font-family: Gilroy, Montserrat, sans-serif;
                font-size: 13px !important;
                font-weight: 700 !important;
                line-height: 1 !important;
                letter-spacing: 0.02em;
                border: 0 !important;
                border-radius: var(--radius-button, 50px) !important;
                box-shadow: none !important;
                white-space: nowrap;
                margin: 0 !important;
                background: var(--fon-button, #1B9DD9) !important;
                color: var(--color-button, #fff) !important;
            }

            .schedule-row__odds .odd-item.blocked {
                cursor: default;
            }

            .schedule-row__odds .odd-display {
                width: 100%;
                font-size: 9px;
                font-weight: 700;
                letter-spacing: 0.04em;
                line-height: 1;
                margin: 0 0 3px;
                text-align: center;
                color: #9aa4bd !important;
            }

            .schedule-row__odds .odd-value {
                width: 100%;
                font-size: 13px;
                font-weight: 700;
                line-height: 1;
                text-align: center;
                font-variant-numeric: tabular-nums;
                font-feature-settings: "tnum";
                color: #fff !important;
            }

            .schedule-row__bet-btn:hover {
                background: var(--fon-button-hover, #1785B8) !important;
            }

            @media screen and (max-width: 780px) {
                .schedule-row {
                    grid-template-columns: 40px minmax(0, 1fr);
                    grid-template-areas:
                        "time matchup"
                        "actions actions";
                    row-gap: 8px;
                    min-height: 0;
                }
                .schedule-row__time { grid-area: time; justify-content: flex-start; text-align: left; }
                .schedule-row__matchup { grid-area: matchup; }
                .schedule-row__actions { grid-area: actions; width: 100%; height: auto; }
                .schedule-row__odds { flex: 1; height: auto; }
                .schedule-row__odds .odds-container {
                    width: 100%;
                    grid-template-columns: repeat(3, minmax(0, 1fr));
                    height: 52px;
                }
                .schedule-row__odds .odd-item { width: auto; min-width: 0 !important; }
                .schedule-row__bet-btn,
                button.bet-btn.schedule-row__bet-btn {
                    width: auto !important;
                    min-width: 88px;
                    flex: 0 0 auto;
                    padding: 0 20px !important;
                }
            }

            /* ========== Live cards (same fill as schedule, not a second skin) ========== */
            .event-cards--live {
                display: grid !important;
                grid-template-columns: minmax(0, 1fr);
                gap: 12px;
                width: 100%;
                max-width: 100%;
                margin-bottom: 16px;
                align-items: stretch;
            }

            @media (min-width: 720px) {
                .event-cards--live {
                    grid-template-columns: repeat(2, minmax(0, 1fr));
                }
            }

            @media (min-width: 1024px) {
                .event-cards--live {
                    grid-template-columns: repeat(3, minmax(0, 1fr));
                }
            }

            .event-cards--live .event-card {
                position: relative;
                display: flex;
                flex-direction: column;
                gap: 8px;
                min-width: 0;
                width: 100%;
                height: auto;
                min-height: 0;
                padding: 12px;
                border-radius: var(--radius-site, 12px);
                border: 1px solid rgba(255,255,255,0.08) !important;
                background: transparent !important;
                box-shadow: none !important;
                text-align: center;
                overflow: hidden;
                box-sizing: border-box;
            }

            .event-cards--live .event-card:hover {
                transform: none !important;
                box-shadow: none !important;
                background: rgba(255,255,255,0.06) !important;
            }

            .event-cards--live .event-card--finished {
                opacity: 0.88;
            }

            .event-cards--live .event-card h3 {
                position: absolute;
                width: 1px; height: 1px;
                padding: 0; margin: -1px;
                overflow: hidden;
                clip: rect(0,0,0,0);
                white-space: nowrap;
                border: 0;
            }

            .event-cards--live .event-live-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
                min-height: 0;
            }

            .event-cards--live .tournament {
                display: block;
                flex: 1 1 auto;
                min-width: 0;
                height: auto;
                font-size: 11px;
                font-weight: 700;
                line-height: 1.2;
                text-transform: uppercase;
                letter-spacing: 0.04em;
                color: #9aa4bd !important;
                background: none;
                padding: 0;
                border-radius: 0;
                margin: 0;
                text-align: left;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .event-live-badge {
                flex-shrink: 0;
                display: inline-flex;
                align-items: center;
                gap: 6px;
                font-size: 10px;
                font-weight: 700;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                padding: 3px 8px;
                border-radius: var(--radius-button, 50px);
            }

            .event-live-badge--live {
                color: #e24b4a;
                background: rgba(226,75,74,0.15);
            }

            .event-live-badge--live::before {
                content: '';
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #e24b4a;
                animation: mapi-live-pulse 1.4s ease-out infinite;
            }

            @keyframes mapi-live-pulse {
                0% { box-shadow: 0 0 0 0 rgba(226,75,74,0.55); }
                100% { box-shadow: 0 0 0 6px rgba(226,75,74,0); }
            }

            .event-live-badge--ft {
                color: #9aa4bd;
                background: rgba(255,255,255,0.08);
            }

            .event-cards--live .teams {
                display: grid !important;
                grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
                align-items: center;
                column-gap: 6px;
                flex-direction: unset !important;
                justify-content: unset !important;
                margin: 2px 0 0 !important;
            }

            .event-cards--live .team {
                min-width: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 4px;
            }

            .event-cards--live .team:first-child,
            .event-cards--live .team:last-child {
                justify-content: center;
            }

            .event-cards--live .team-name {
                display: block;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap !important;
                min-width: 0;
                max-width: 100%;
                height: auto;
                font-size: 12px !important;
                font-weight: 700 !important;
                line-height: 1.2;
                color: #e6eaf3;
                text-align: center;
            }

            .event-cards--live .team-logo,
            .event-cards--live .team-logo--empty {
                width: 40px;
                height: 40px;
                flex-shrink: 0;
                border-radius: calc(var(--radius-site, 12px) - 4px);
                background: transparent;
                padding: 3px;
                object-fit: contain;
                box-sizing: border-box;
            }

            .event-live-scoreboard {
                width: 88px;
                min-width: 88px;
                max-width: 88px;
                flex: none;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2px;
                padding-top: 0;
            }

            .event-cards--live .event-live-score {
                display: flex;
                align-items: baseline;
                justify-content: center;
                gap: 4px;
                font-size: 28px;
                font-weight: 700;
                letter-spacing: 0;
                color: #fff;
                font-variant-numeric: tabular-nums;
                line-height: 1;
                white-space: nowrap;
            }

            .event-cards--live .event-live-score-sep {
                font-size: 16px;
                font-weight: 600;
                color: #9aa4bd;
                line-height: 1;
            }

            .event-cards--live .event-live-clock {
                display: block;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                max-width: 88px;
                min-height: 0;
                color: #9aa4bd;
                font-size: 10px;
                line-height: 1.2;
                text-transform: uppercase;
                letter-spacing: 0.02em;
                text-align: center;
            }

            .event-cards--live .odds-container {
                display: none;
            }

            .event-schedule .odd-item {
                cursor: pointer;
                transform: none !important;
            }

            .event-schedule .odd-item:hover {
                transform: none !important;
            }

            .event-schedule .odd-display {
                color: #9aa4bd !important;
            }

            .event-schedule .odd-value {
                color: #fff !important;
                font-variant-numeric: tabular-nums;
                font-feature-settings: "tnum";
            }

            .event-schedule .odd-item.blocked {
                cursor: default;
                pointer-events: none;
            }

            .event-schedule .odd-item.blocked:hover {
                background: transparent !important;
            }

            .event-cards--live .bet-btn {
                width: fit-content !important;
                min-width: 0 !important;
                max-width: 100%;
                align-self: center;
                border: none;
                border-radius: var(--radius-button, 50px);
                padding: 8px 16px !important;
                margin: 6px auto 0 !important;
                font-family: Gilroy, Montserrat, sans-serif;
                font-size: 13px;
                font-weight: 700;
                letter-spacing: 0.02em;
                background: var(--fon-button, #1B9DD9);
                color: var(--color-button, #fff);
            }

            @media screen and (max-width: 780px) {
                .event-cards--live .bet-btn {
                    width: fit-content !important;
                    min-width: 0 !important;
                    align-self: center;
                    padding: 8px 16px !important;
                    font-size: 13px;
                }
            }

            .event-cards--live .bet-btn:hover {
                background: var(--fon-button-hover, #1785B8);
            }

            .event-cards--live .event-card--finished .bet-btn {
                background: rgba(255,255,255,0.08);
                color: #e6eaf3;
            }

            .event-live-empty {
                text-align: center;
                padding: 32px 16px;
                color: #9aa4bd;
                border: 1px dashed rgba(255,255,255,0.16);
                border-radius: var(--radius-site, 12px);
                margin: 0;
                background: transparent;
            }

            .mapi-live-section {
                margin: 0 0 16px;
            }

            .mapi-live-section > h2 {
                margin: 8px 0 10px !important;
            }

            @media screen and (max-width: 480px) {
                .schedule-tab {
                    min-width: 68px;
                    min-height: 44px;
                    padding: 6px 10px;
                    font-size: 14px;
                }

                .schedule-tab span {
                    font-size: 11px;
                }

                .schedule-league-chip {
                    min-height: 28px;
                    padding: 4px 9px;
                    font-size: 11px;
                }

                .event-cards--live .event-card .teams {
                    grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr) !important;
                    flex-direction: unset !important;
                }

                .event-cards--live .event-live-scoreboard {
                    width: 80px;
                    min-width: 80px;
                    max-width: 80px;
                }

                .event-cards--live .event-live-score {
                    font-size: 24px;
                }

                .event-cards--live .event-live-clock {
                    max-width: 80px;
                }
            }

            /******************************Homepage upcoming carousel********************/
            .mapi-upcoming {
                width: 100%;
                min-width: 0;
                padding: 0;
            }

            .mapi-upcoming__head {
                display: flex;
                align-items: baseline;
                justify-content: space-between;
                gap: 12px;
                margin: 0 0 10px;
            }

            .mapi-upcoming__title {
                margin: 0;
                min-width: 0;
                font-family: Gilroy, Montserrat, sans-serif;
                font-size: 14px;
                font-weight: 700;
                letter-spacing: 0;
                text-transform: none;
                color: #fff;
            }

            .mapi-upcoming a,
            .mapi-upcoming a:hover,
            .mapi-upcoming a:focus,
            a.mapi-upcoming-card,
            a.mapi-upcoming-card:hover,
            a.mapi-upcoming-card span {
                text-decoration: none !important;
            }

            .mapi-upcoming__more {
                flex-shrink: 0;
                font-family: Gilroy, Montserrat, sans-serif;
                font-size: 13px;
                font-weight: 600;
                color: #1B9DD9;
                white-space: nowrap;
                transition: color 0.2s ease;
            }

            .mapi-upcoming__more::after {
                content: " →";
            }

            html[dir="rtl"] .mapi-upcoming__more::after {
                content: " ←";
            }

            .mapi-upcoming__more:hover {
                color: #ED9F02;
            }

            .mapi-upcoming__viewport {
                position: relative;
                min-width: 0;
            }

            .mapi-upcoming-swiper {
                width: 100%;
                min-width: 0;
                overflow: hidden;
                margin: 0;
                cursor: grab;
                touch-action: pan-x;
                overscroll-behavior-x: contain;
            }

            .mapi-upcoming-swiper:active {
                cursor: grabbing;
            }

            .mapi-upcoming.is-locked .mapi-upcoming-swiper,
            .mapi-upcoming.is-locked .mapi-upcoming-card {
                cursor: default;
            }

            .mapi-upcoming-swiper .swiper-wrapper,
            .mapi-upcoming-swiper .swiper-slide {
                scrollbar-width: none;
            }

            .mapi-upcoming-swiper .swiper-wrapper::-webkit-scrollbar,
            .mapi-upcoming-swiper::-webkit-scrollbar {
                display: none;
            }

            .mapi-upcoming-swiper .swiper-slide {
                width: 210px;
                height: auto;
            }

            .mapi-upcoming-empty {
                margin: 0;
                padding: 12px;
                min-height: 72px;
                display: flex;
                align-items: center;
                border-radius: var(--radius-site, 12px);
                background: rgba(255, 255, 255, 0.04);
                border: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow: none;
                font-size: 13px;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.58);
            }

            .mapi-upcoming-card {
                display: flex;
                flex-direction: column;
                gap: 8px;
                height: 100%;
                padding: 12px;
                border-radius: var(--radius-site, 12px);
                background: rgba(8, 14, 28, 0.55);
                border: 1px solid rgba(255, 255, 255, 0.06);
                box-shadow: none;
                color: inherit;
                text-decoration: none;
                box-sizing: border-box;
                cursor: grab;
            }

            a.mapi-upcoming-card:hover {
                border-color: rgba(255, 255, 255, 0.12);
                background: rgba(8, 14, 28, 0.72);
            }

            .mapi-upcoming-card__meta {
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                gap: 8px;
            }

            .mapi-upcoming-card__league {
                min-width: 0;
                font-family: Gilroy, Montserrat, sans-serif;
                font-size: 10px;
                font-weight: 700;
                letter-spacing: 0.04em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.58);
                line-height: 1.3;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
            }

            .mapi-upcoming-card__time {
                flex-shrink: 0;
                font-family: Gilroy, Montserrat, sans-serif;
                font-size: 11px;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.58);
                white-space: nowrap;
            }

            .mapi-upcoming-card__team {
                display: flex;
                align-items: center;
                gap: 8px;
                min-width: 0;
            }

            .mapi-upcoming-card__logo {
                width: 22px;
                height: 22px;
                flex-shrink: 0;
                object-fit: contain;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.06);
            }

            .mapi-upcoming-card__logo--empty {
                display: block;
            }

            .mapi-upcoming-card__name {
                font-family: Gilroy, Montserrat, sans-serif;
                font-size: 13px;
                font-weight: 700;
                line-height: 1.25;
                color: #fff;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            @media screen and (max-width: 767px) {
                .mapi-upcoming__head {
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 6px 10px;
                    margin: 0 0 8px;
                }

                .mapi-upcoming__title {
                    font-size: 13px;
                    min-width: 0;
                    line-height: 1.3;
                }

                .mapi-upcoming__more {
                    font-size: 12px;
                }

                .mapi-upcoming-swiper .swiper-slide {
                    width: min(200px, 70vw);
                }

                .mapi-upcoming-card,
                .mapi-upcoming-empty {
                    padding: 10px;
                }

                .mapi-upcoming-empty {
                    min-height: 64px;
                    font-size: 12px;
                }

                .mapi-upcoming-card__league {
                    font-size: 9px;
                }

                .mapi-upcoming-card__time {
                    font-size: 10px;
                }

                .mapi-upcoming-card__name {
                    font-size: 12px;
                }

                .mapi-upcoming-card__logo {
                    width: 20px;
                    height: 20px;
                }
            }

            @media screen and (max-width: 480px) {
                .mapi-upcoming {
                    padding: 0;
                }

                .mapi-upcoming-swiper .swiper-slide {
                    width: min(210px, 78vw);
                }
            }