      /* Все стили остаются без изменений */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #0a0b12;
            color: #fff;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        body::-webkit-scrollbar {
            width: 0;
            height: 0;
        }

        header {
            display: flex;
            align-items: center;
            justify-content: left;
            padding-left: 15px;
            padding: 8px 15px;
            background: #0f111a;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        header img {
            width: 40px;
            margin-right: 10px;
        }
        header span {
            font-size: 18px;
            font-weight: bold;
        }

        .container {
            max-width: 900px;
            margin: 10px auto;
            padding: 0 15px;
        }

        .player-box {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .04);
        }

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

        .channels {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        .channel {
            cursor: pointer;
            border-radius: 10px;
            overflow: hidden;
            transition: 0.2s;
            border: 2px solid transparent;
            background: #14161f;
            padding: 4px 4px 2px;
            width: 90px;
            text-align: center;
        }
        .channel:hover {
            transform: scale(1.05);
            border-color: #00000000;
        }
        .channel.active {
            border-color: #673ab791;
        }
        .channel img {
            width: 100%;
            display: block;
            border-radius: 6px;
        }
        .channel-name {
            display: block;
            font-size: 11px;
            color: #ccc;
            margin-top: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 0 2px;
        }

        footer {
            text-align: center;
            padding: 15px;
            margin-top: 40px;
            font-size: 13px;
            color: #aaa;
        }

        @media (max-width: 600px) {
            header span {
                font-size: 16px;
            }
            body {
                height: 2000px;
            }
            .channels {
                gap: 1px;
                margin-top: 10px;
            }
            .channel {
                width: 58px;
                padding: 3px 3px 0;
            }
            .channel-name {
                font-size: 0px;
            }
        }

        div[caramel-id="01jra5czeryzkjyeyka9a2ze0b"] {
           position: fixed;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 350px;
            height: 600px;
            z-index: 9999;
            background: rgba(0,0,0,0.2);
            box-shadow: -4px 0 20px rgba(0,0,0,0.6);
        }
        @media (max-width: 1023px) {
            div[caramel-id="01jra5czeryzkjyeyka9a2ze0b"] {
                display: none !important;
            }
        }
