        .live-chat-wrapper{
            padding: 0;
            display: flex;
            flex-direction: column;
        }

        .live-stream-row:fullscreen,
        .live-stream-row:-webkit-full-screen{
            display: flex;
            flex-direction: row;
            background: #000;
            height: 100vh;
            place-content: center;
        }

        .live-stream-row:fullscreen .hero-wrapper,
        .live-stream-row:-webkit-full-screen .hero-wrapper{
            flex: 1;
            height: 100vh;
            min-height: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .live-stream-row:fullscreen .hero-wrapper .shape-player,
        .live-stream-row:-webkit-full-screen .hero-wrapper .shape-player{
            display: none;
        }

        .live-stream-row:fullscreen .live-chat-wrapper,
        .live-stream-row:-webkit-full-screen .live-chat-wrapper{
            flex: 0 0 340px;
            height: 100vh;
        }

        @media (max-width: 767px){
            .live-stream-row:fullscreen,
            .live-stream-row:-webkit-full-screen{
                flex-direction: column;
            }

            .live-stream-row:fullscreen .hero-wrapper,
            .live-stream-row:-webkit-full-screen .hero-wrapper{
                flex: 1 1 auto;
                height: auto;
                min-height: 0;
            }

            .live-stream-row:fullscreen .live-chat-wrapper,
            .live-stream-row:-webkit-full-screen .live-chat-wrapper{
                flex: 0 0 220px;
                width: 100%;
                height: 220px;
            }
        }

        .live-chat-panel{
            display: flex;
            flex-direction: column;
            flex: 1;
            max-height: calc(100vh - 110px);
            min-height: 0;
            overflow: hidden;
            background: #0b0b0f;
            border-left: 1px solid rgba(255,255,255,.08);
        }

        @media (min-width: 768px){
            .live-chat-wrapper{
                overflow: hidden !important;
            }

            .live-chat-panel{
                overflow: hidden !important;
            }
        }

        @media (min-width: 768px) and (max-width: 991px){
            .live-chat-wrapper{
                height: 700px !important;
                max-height: 700px !important;
            }

            .live-chat-panel{
                height: 700px;
                max-height: 700px !important;
            }
        }

        .live-chat-header{
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255,255,255,.08);
            flex-shrink: 0;
        }

        .live-chat-header h3{
            margin: 0;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
        }

        .live-chat-dot{
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #C46A4A;
            box-shadow: 0 0 0 rgba(196, 106, 74, 0.6);
            animation: liveChatPulse 1.6s infinite;
            flex-shrink: 0;
        }

        @keyframes liveChatPulse{
            0%   { box-shadow: 0 0 0 0 rgba(196, 106, 74, 0.55); }
            70%  { box-shadow: 0 0 0 6px rgba(196, 106, 74, 0); }
            100% { box-shadow: 0 0 0 0 rgba(196, 106, 74, 0); }
        }

        .live-chat-empty{
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-align: center;
            color: #fff;
            padding: 24px;
        }

        .live-chat-empty i{
            font-size: 28px;
            color: rgba(255,255,255,.35);
            margin-bottom: 4px;
        }

        .live-chat-empty p{
            margin: 0;
            font-weight: 600;
        }

        .live-chat-empty span{
            font-size: 13px;
            color: rgba(255,255,255,.55);
        }

        @media (max-width: 767px){
            .live-stream-row{
                display: flex;
                flex-direction: column;
                height: calc(100vh - 113px);
                overflow: hidden;
            }

            .live-stream-row .hero-wrapper{
                flex: 0 0 auto;
         
                min-height: 0;
                padding: 20px 0;
            }

            .live-stream-row .hero-wrapper .shape-player{
                display: none;
            }

            .live-stream-row .live-chat-wrapper{
                flex: 1;
                min-height: 0;
            }
        }

        .live-chat-messages{
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            padding: 14px 16px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .live-chat-messages::-webkit-scrollbar{
            width: 6px;
        }

        .live-chat-messages::-webkit-scrollbar-thumb{
            background: rgba(255,255,255,.15);
            border-radius: 10px;
        }

        .live-chat-message{
            background: rgba(255,255,255,.06);
            border-radius: 10px;
            padding: 8px 12px;
        }

        .live-chat-message-own{
            background: rgba(99,102,241,.18);
        }

        .live-chat-message-header{
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
        }

        .live-chat-avatar{
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
        }

        .live-chat-message-author{
            font-size: 12px;
            font-weight: 600;
            color: #6366f1;
        }

        .live-chat-message-own .live-chat-message-author{
            color: #a5b4fc;
        }

        .live-chat-message-time{
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            margin-left: auto;
        }

        .live-chat-message p{
            margin: 0;
            color: #fff;
            font-size: 14px;
            word-break: break-word;
        }

        .live-chat-form{
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 14px;
            border-top: 1px solid rgba(255,255,255,.08);
            flex-shrink: 0;
        }

        .live-chat-input{
            flex: 1;
            min-width: 0;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 20px;
            padding: 9px 14px;
            color: #fff;
            font-size: 14px;
        }

        .live-chat-input::placeholder{
            color: rgba(255,255,255,.4);
        }

        .live-chat-input:focus{
            outline: none;
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99,102,241,.2);
        }

        .live-chat-send-btn{
            flex-shrink: 0;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: none;
            background: #6366f1;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .2s ease;
        }

        .live-chat-send-btn:hover{
            background: #4f46e5;
        }
