  body {
            display: flex;
            justify-content: center;
            background-color: #232226;
            overflow: hidden;
        }

        .bg1 {
            position: fixed;
            bottom: -1vh;
            width: 101vw;
            height: 101vh;
            right: -1vw;
            z-index: 1;
        }

        .bg1_1 {
            display: none;
        }

        .drago {
              display: none;
        }

        /* Элементы с одинаковым отступом от левого края */
        .logo1 {
            position: fixed;
            top: 9vh;
            left: 5vw; /* Используем vw для одинакового отступа */
            width: 7vw;
            z-index: 2;
            display: block;
        }

         .logo2 {
            display: none;
        }

        .l1 {
            position: fixed;
            top: 0;
            transform: translateX(10%);
            height: 100vh;
            z-index: 3;
            display: block;
        }

        .l2 {
           display: none;
        }

        .l3 {
             display: none;
        }

        .l4 {
            position: fixed;
            height: 15vh;
            left: 20%;
            bottom: 18vh;
            z-index: 3;
        }

        .l5 {
            position: fixed;
            top: 3vh;
            left: 15%;
            width: 26vh;
            z-index: 3;
        }

        .l6 {
            position: fixed;
            top: -15vh;
            height: 120vh;
            z-index: 1;
        }

        .l7 {
            position: fixed;
            top: 25vh;
            left: 4vw; /* Тот же отступ, что и у logo1 */
            height: 28vh;
            z-index: 3;
            display: block;
        }

        .l8 {
          display: none;
        }

        /* Контейнер для всех элементов карусели */
                .wheel-container {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120vh;
            height: 120vh;
            max-width: 110vw;
            max-height: 110vh;
            z-index: 2;
        }

        .carousel {
            position: absolute;
            top: 3%;
            left: 36%;
            width: 110%;
            height: 110%;
            z-index: 2;
            object-fit: contain;
        }

        .spin {
            position: absolute;
            width: 65.5%; /* 78/120 = 0.65 */
            height: 65.5%;
            top: 21%; /* (100% - 65%) / 2 = 17.5% */
            left: 43%;
            z-index: 1;
            object-fit: contain;
        }

        .center {
            position: absolute;
            width: 31%; /* 24/120 = 0.2 */
            height: 31%;
            top: 38%; /* (100% - 20%) / 2 = 40% */
            left: 61%;
            z-index: 4;
            object-fit: contain;
        }
       

        .btn {
            position: fixed;
            top: 50vh;
            left: 3vw; /* Тот же отступ, что и у logo1 и l7 */
            height: 20vh;
            max-height: 18.3vh;
            z-index: 4;
            cursor: pointer;
            transition: transform 0.3s ease;
            object-fit: contain;
        }

        .btn:hover {
            transform: scale(1.1);
        }

        .btn:active {
            transform: scale(0.95);
        }

        /* Анимация вращения колеса */
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(2395deg);
            }
        }

        /* Класс для анимации вращения */
        .spinning {
            animation: rotate 5s cubic-bezier(.5,0,.48,1) forwards;
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(20px);
        }

        /* Кнопка закрытия */
        .close-button {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
            background: none;
            border: none;
            color: #FFA500;
        }

        .close-button:hover {
            color: #ffb733;
        }

        /* Верхний блок */
        .modal-header {
            display: flex;
            margin-bottom: 10px;
            border-bottom: 1px solid white; 
        }

        .modal-header .large-text {
            flex: 0 0 20%;
            font-size: 1.8em;
            font-weight: bold;
        }

        .modal-header .small-text {
            margin-top: 2vh;
            flex: 1;
            font-size: 0.8em;
            color: #ccc;
            padding-left: 5vw;
        }

        /* Белая горизонтальная линия */
        .divider {
            height: 1px;
            background-color: white;
            width: 100%;
        }

        .modal {
            position: relative;
            background: #1e1e1e;
            color: white;
            padding: 20px;
            width: 40vw;
            max-width: 500px;
            height: auto;
            border-radius: 10px;
            font-family: "Roboto", sans-serif;
        }

        .modal-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 5vh;
            margin-bottom: 5vh;
        }

        .modal-buttons button {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            font-size: 0.95em;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
            height: auto;
            min-height: 45px;
        }

        .modal-buttons button img {
            height: 20px;
            width: 20px;
            margin-right: 10%;
        }

        /* Стили кнопок */
        .btn-1 {
            background-color: #588cf1;
            color: white;
        }

        .btn-2 {
            background-color: #efefef;
            color: black;
        }

        .btn-3 {
            background-color: #d7143a;
            color: white;
        }

        .btn-4 {
            background-color: #24a1de;
            color: white;
        }

        /* Disabled */
        .modal-checkbox {
            display: flex;
            align-items: flex-start; /* Изменено на flex-start для правильного выравнивания */
            font-size: 1.1em;
            padding-top: 10px;
            margin-top: 10px;
        }

        /* Скрытие дефолтного чекбокса и кастомный стиль */
        .modal-checkbox input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            width: 20px; /* Фиксированная ширина */
            height: 20px; /* Фиксированная высота - СДЕЛАНО КВАДРАТНЫМ */
            min-width: 20px; /* Минимальная ширина */
            min-height: 20px; /* Минимальная высота */
            border: 2px solid #FFA500;
            border-radius: 4px;
            margin-right: 10px;
            position: relative;
            background-color: transparent;
            cursor: pointer;
            transition: background-color 0.2s, border-color 0.2s;
            flex-shrink: 0; /* Предотвращает сжатие */
        }

        /* Отображение галочки */
        .modal-checkbox input[type="checkbox"]::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 5px;
            width: 5px;
            height: 10px;
            border: solid rgb(0, 0, 0);
            border-width: 0 2px 2px 0;
            opacity: 0;
            transform: rotate(45deg);
            transition: opacity 0.2s;
        }

        /* Активное состояние: фон оранжевый, галочка белая */
        .modal-checkbox input[type="checkbox"]:checked {
            background-color: #FFA500;
            border-color: #FFA500;
        }

        .modal-checkbox input[type="checkbox"]:checked::after {
            opacity: 1;
        }

        .modal-checkbox label {
            line-height: 1.4; /* Улучшаем читаемость текста */
        }

        .text {
            font-family: 'Druk Text Wide Trial', sans-serif;
            font-weight: 600;
            font-size: 2em;
        }

        .buttontext {
            font-family: 'Druk Text Wide Trial', sans-serif;
            font-weight: 700;
            font-size: 1.5em;
        }

       

        @media (max-width: 600px) and (min-height: 500px) {


         .btn {
    display: block;
    position: fixed;
    top: 35vh;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80vw;
    max-width: 400px; /* Опционально: ограничение максимальной ширины */
    z-index: 5;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.1);
}

.btn:active {
    transform: scale(0.95);
}


           .wheel-container {
            position: fixed;
            top: 70%;
            left: 5%;
            transform: translate(-50%, -50%);
            width: 120vh;
            height: 120vh;
            max-width: 110vw;
            max-height: 110vh;
            z-index: 2;
        }

        .carousel {
            position: absolute;
            top: 3%;
            left: 36%;
            width: 110%;
            height: 110%;
            z-index: 2;
            object-fit: contain;
        }

        .spin {
            position: absolute;
            width: 65.5%; /* 78/120 = 0.65 */
            height: 65.5%;
            top: 23%; /* (100% - 65%) / 2 = 17.5% */
            left: 43%;
            z-index: 1;
            object-fit: contain;
        }

        .center {
            position: absolute;
            width: 31%; /* 24/120 = 0.2 */
            height: 31%;
            top: 41%; /* (100% - 20%) / 2 = 40% */
            left: 61%;
            z-index: 4;
            object-fit: contain;
        }

          .logo1 {
            display: none;
          }


           .logo2 {
            display: block;
             position: fixed;
                top: 5vh;
                left: 50%;
                transform: translateX(-50%);
                width: 40vw;
                max-width: 200px;
                z-index: 5;
                object-fit: contain;
           
        }

            .l1 {
              display: none;
        }


           .drago {
            position: fixed;
            height: 100vh;
            right: -5%;
            bottom: 0;
            z-index: 4;
            display: block;
        }

        .l2 {
            position: fixed;
            left: 0;
            bottom: 0vh;
            height: 95vh;
            z-index: 1;
            display: block;
        }

        .l3 {
            position: fixed;
            top: -1vh;
            left: 0;
            height: 90vh;
            z-index: 0;
            display: block;
        }


         .l7 {
           
            display: none;
        }

        .l8 {
           position: fixed;
                top: 15vh;
                left: 50%;
                transform: translateX(-50%);
                width: 80vw;
               
                z-index: 5;
                object-fit: contain;
            display: block;
        }

             .bg1 {
                display: none;
            }

            .bg1_1 {
                display: block;
                position: fixed;
                top: 0;
                height: 100vh;
                width: 100vw;
            }

            .modal-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: transparent;
                display: none;
                justify-content: center;
                align-items: center;
                z-index: 9999;
            }

            /* Кнопка закрытия */
            .close-button {
                position: absolute;
                top: 10px;
                right: 10px;
                font-size: 24px;
                cursor: pointer;
                background: none;
                border: none;
                color: #FFA500;
            }

            .close-button:hover {
                color: #ffb733;
            }

            /* Верхний блок */
            .modal-header {
                display: flex;
                margin-bottom: 10px;
                border-bottom: 1px solid white; 
            }

            .modal-header .large-text {
                margin-top: 2vh;
                flex: 0 0 20%;
                font-size: 1.2em;
                font-weight: bold;
            }

            .modal-header .small-text {
                margin-top: 2vh;
                flex: 1;
                font-size: 0.8em;
                color: #ccc;
                padding-left: 5vw;
            }

            /* Белая горизонтальная линия */
            .divider {
                height: 1px;
                background-color: white;
                width: 100%;
            }

            .modal {
                width: 85vw;
                height: auto;
                max-height: 90vh;
            }

            .modal-buttons {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .modal-buttons button {
                width: 100%;
                font-size: 0.9em;
                padding: 8px 12px;
            }

            .modal-buttons button img {
                height: 20px;
                width: 20px;
                margin-right: 25%;
            }

            /* Стили кнопок */
            .btn-1 {
                background-color: #588cf1;
                color: white;
            }

            .btn-2 {
                background-color: #efefef;
                color: black;
            }

            .btn-3 {
                background-color: #d7143a;
                color: white;
            }

            .btn-4 {
                background-color: #24a1de;
                color: white;
            }

            /* Disabled - Мобильная версия */
            .modal-checkbox {
                display: flex;
                align-items: flex-start;
                font-size: 0.7em;
                padding-top: 10px;
                margin-top: 10px;
                margin-left: 0;
                width: 100%;
            }

            /* Скрытие дефолтного чекбокса и кастомный стиль - квадратная форма */
            .modal-checkbox input[type="checkbox"] {
                appearance: none;
                -webkit-appearance: none;
                width: 20px; /* Фиксированная ширина */
                height: 20px; /* Фиксированная высота - квадрат */
                min-width: 20px;
                min-height: 20px;
                border: 2px solid #FFA500;
                border-radius: 4px;
                margin-right: 10px;
                position: relative;
                background-color: transparent;
                cursor: pointer;
                transition: background-color 0.2s, border-color 0.2s;
                flex-shrink: 0;
            }

            /* Отображение галочки */
            .modal-checkbox input[type="checkbox"]::after {
                content: '';
                position: absolute;
                top: 2px;
                left: 5px;
                width: 5px;
                height: 10px;
                border: solid rgb(0, 0, 0);
                border-width: 0 2px 2px 0;
                opacity: 0;
                transform: rotate(45deg);
                transition: opacity 0.2s;
            }

            /* Активное состояние: фон оранжевый, галочка белая */
            .modal-checkbox input[type="checkbox"]:checked {
                background-color: #FFA500;
                border-color: #FFA500;
            }

            .modal-checkbox input[type="checkbox"]:checked::after {
                opacity: 1;
            }
        }

        @media (max-width: 400px) {
            .modal-buttons {
                grid-template-columns: 1fr;
            }

            
        }

        

        @media (max-height: 440px) {
            .modal {
                width: auto;
                height: 70vh;
            }

            .modal-buttons {
                grid-template-columns: 1fr 1fr;
                gap: 5px;
            }

            .modal-buttons button {
                width: 100%;
                font-size: 0.9em;
                padding: 6px 9px;
            }

            .modal-buttons button img {
                height: 20px;
                width: 20px;
                margin-right: 15%;
            }

            /* Стили кнопок */
            .btn-1 {
                background-color: #588cf1;
                color: white;
            }

            .btn-2 {
                background-color: #efefef;
                color: black;
            }

            .btn-3 {
                background-color: #d7143a;
                color: white;
            }

            .btn-4 {
                background-color: #24a1de;
                color: white;
            }

            /* Disabled - Мобильная версия */
            .modal-checkbox {
                display: flex;
                align-items: flex-start;
                font-size: 0.6em;
                padding-top: 10px;
                margin-top: 10px;
                margin-left: 0;
                width: 100%;
            }

             .modal-header .large-text {
            flex: 0 0 20%;
            font-size: 1.2em;
            font-weight: bold;
        }


        .modal-header .small-text {
                margin-top: 2vh;
                flex: 1;
                font-size: 0.8em;
                color: #ccc;
                padding-left: 2vw;
            }

            /* Скрытие дефолтного чекбокса и кастомный стиль - квадратная форма */
            .modal-checkbox input[type="checkbox"] {
                appearance: none;
                -webkit-appearance: none;
                width: 20px; /* Фиксированная ширина */
                height: 20px; /* Фиксированная высота - квадрат */
                min-width: 20px;
                min-height: 20px;
                border: 2px solid #FFA500;
                border-radius: 4px;
                margin-right: 10px;
                position: relative;
                background-color: transparent;
                cursor: pointer;
                transition: background-color 0.2s, border-color 0.2s;
                flex-shrink: 0;
            }

            /* Отображение галочки */
            .modal-checkbox input[type="checkbox"]::after {
                content: '';
                position: absolute;
                top: 2px;
                left: 5px;
                width: 5px;
                height: 10px;
                border: solid rgb(0, 0, 0);
                border-width: 0 2px 2px 0;
                opacity: 0;
                transform: rotate(45deg);
                transition: opacity 0.2s;
            }

            /* Активное состояние: фон оранжевый, галочка белая */
            .modal-checkbox input[type="checkbox"]:checked {
                background-color: #FFA500;
                border-color: #FFA500;
            }

            .modal-checkbox input[type="checkbox"]:checked::after {
                opacity: 1;
            }
        }