        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #0a0a0a;
            color: #f0f0f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding-bottom: 80px;
        }

        /* ===== HEADER (style FIFA World Cup) ===== */
        header {
            background-color: #000000;
            padding: 10px 16px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 99;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
        }

        header .logo-link {
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

        header .logo-link img {
            height: 70px;
            width: auto;
        }

        .header-menu-wrapper {
            flex: 1;
            margin-left: 20px;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: #ff0000 transparent;
            padding: 4px 0;
            text-align: right;
        }

        .header-menu-wrapper::-webkit-scrollbar {
            height: 4px;
        }
        .header-menu-wrapper::-webkit-scrollbar-thumb {
            background: #ff0000;
            border-radius: 10px;
        }
        .header-menu-wrapper::-webkit-scrollbar-track {
            background: transparent;
        }

        .header-menu {
            display: inline-flex;
            gap: 8px;
            align-items: center;
        }

        .header-menu .menu-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #1a1a1a;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: background 0.2s, transform 0.2s;
            flex-shrink: 0;
            border: 1px solid #333;
        }

        .header-menu .menu-item i {
            font-size: 16px;
            color: #ff0000;
        }

        .header-menu .menu-item:hover {
            background: #ff0000;
            color: #fff;
            transform: scale(1.05);
        }

        .header-menu .menu-item:hover i {
            color: #fff;
        }

        .header-spacer {
            height: 90px;
        }

        /* ===== MAIN CONTAINER ===== */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px 40px;
            width: 100%;
            flex: 1;
        }

        /* ===== BOUTONS CHAÎNES ===== */
        .buttons-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            padding: 8px 0;
        }
        .buttons-container .sport-button {
            flex: 0 1 120px;
            max-width: 140px;
            min-width: 100px;
            padding: 12px 10px;
            font-size: 13px;
            font-weight: 700;
            background: #1a1a1a;
            color: #fff;
            border: 1px solid #ff4444;
            border-radius: 8px;
            cursor: pointer;
            text-align: center;
            word-wrap: break-word;
            transition: background 0.3s, color 0.3s, border-color 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            letter-spacing: 0.3px;
            white-space: normal;
            line-height: 1.3;
            text-decoration: none;
        }
        .buttons-container .sport-button i {
            font-size: 14px;
            color: #ff4444;
            transition: color 0.3s;
            flex-shrink: 0;
        }
        .buttons-container .sport-button:hover {
            background: #ff0000;
            color: #fff;
            border-color: #ff0000;
        }
        .buttons-container .sport-button:hover i {
            color: #fff;
        }

        /* ===== RECHERCHE ===== */
        #recherche-chaines {
            margin-bottom: 20px;
            margin-top: 30px;
            text-align: center;
        }
        #recherche-chaines input {
            padding: 10px;
            width: 90%;
            max-width: 400px;
            border-radius: 10px;
            border: 1px solid #ccc;
            font-size: 16px;
            background: #1a1a1a;
            color: #fff;
        }
        #recherche-chaines input::placeholder {
            color: #888;
        }

        /* ===== FOOTER FIXE (sans padding) ===== */
        .fixed-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(8px);
            border-top: 1px solid #222;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            z-index: 9999;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
            height: 56px;
        }

        /* ===== BOUTONS DU FOOTER (même style que Retour) ===== */
        .fixed-footer .footer-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #1a1a1a;
            color: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: background 0.3s, color 0.3s, border-color 0.3s;
            border: 1px solid #444;
            cursor: pointer;
            font-family: inherit;
            letter-spacing: 0.3px;
            height: 36px;
        }

        .fixed-footer .footer-btn i {
            font-size: 15px;
            color: #ff0000;
            transition: color 0.3s;
        }

        .fixed-footer .footer-btn:hover {
            background: #ff0000;
            color: #fff;
            border-color: #ff0000;
        }

        .fixed-footer .footer-btn:hover i {
            color: #fff;
        }

        /* ===== BANDEAU L'EQUIPE ===== */
        .lequipe-banner {
            background: #e50914;
            color: white;
            padding: 10px;
            text-align: center;
            font-weight: bold;
            font-size: 18px;
            margin: 0;
            width: 100%;
        }

        /* ===================================================== */
        /* ===== STYLES PANELS ===== */
        /* ===================================================== */

        /* ===== OVERLAY ===== */
        .panel-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999998;
            display: none;
            backdrop-filter: blur(3px);
        }
        .panel-overlay.active {
            display: block;
        }

        /* ===== PANEL CHAÎNES ===== */
        .channels-panel-parent {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 420px;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(12px);
            z-index: 999999;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            padding: 20px 15px;
            border-left: 2px solid #e50914;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
        }
        .channels-panel-parent.open {
            right: 0;
        }
        .channels-panel-parent .channels-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 1px solid #333;
            margin-bottom: 15px;
        }
        .channels-panel-parent .channels-header h3 {
            color: white;
            margin: 0;
            font-size: 18px;
        }
        .channels-panel-parent .channels-header h3 i {
            color: #e50914;
            margin-right: 8px;
        }
        .channels-panel-parent .close-panel-btn {
            background: rgba(229, 9, 20, 0.8);
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            transition: 0.2s;
        }
        .channels-panel-parent .close-panel-btn:hover {
            background: #e50914;
            transform: scale(1.1);
        }
        .channels-grid-parent {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 15px;
        }
        .channel-card-parent {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(30, 30, 40, 0.5);
            border-radius: 12px;
            padding: 10px 5px;
            cursor: pointer;
            transition: all 0.2s;
            border: 1px solid transparent;
        }
        .channel-card-parent:hover {
            background: #e50914;
            transform: scale(1.05);
        }
        .channel-card-parent img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 8px;
            background: #222;
        }
        .channel-card-parent span {
            color: white;
            font-size: 11px;
            text-align: center;
            word-break: break-word;
            max-width: 100%;
        }
        .top-channel-card-parent {
            background: rgba(30, 30, 40, 0.9);
            border: 1px solid #e50914;
        }
        .top-channel-card-parent:hover {
            background: #e50914;
        }
        .top-channels-title-parent {
            grid-column: 1 / -1;
            text-align: center;
            margin: 5px 0 10px 0;
            color: #ffd700;
            font-size: 14px;
            font-weight: bold;
        }
        .channels-separator {
            grid-column: 1 / -1;
            margin: 10px 0;
            border: 0;
            border-top: 1px solid #333;
        }

        /* ===== POPUP PHOTOS ET VIDÉOS ===== */
        .media-popup-parent {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            z-index: 999999;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(15px);
            padding: 25px;
            border-radius: 16px;
            border: 2px solid #e50914;
            max-width: 90%;
            max-height: 85%;
            overflow-y: auto;
            display: none;
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 320px;
            min-height: 200px;
        }
        .media-popup-parent.open {
            display: block;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        .media-popup-parent .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #333;
        }
        .media-popup-parent .popup-header h3 {
            color: white;
            margin: 0;
            font-size: 18px;
        }
        .media-popup-parent .popup-header h3 i {
            color: #e50914;
            margin-right: 8px;
        }
        .media-popup-parent .close-popup-btn {
            background: rgba(229, 9, 20, 0.8);
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            transition: 0.2s;
        }
        .media-popup-parent .close-popup-btn:hover {
            background: #e50914;
            transform: scale(1.1);
        }
        .popup-content {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            padding: 5px;
            max-height: 60vh;
            overflow-y: auto;
        }
        .popup-media-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #1a1a1a;
            border-radius: 10px;
            padding: 10px;
            cursor: pointer;
            border: 1px solid #333;
            transition: transform 0.2s;
            position: relative;
        }
        .popup-media-item:hover {
            transform: scale(1.03);
            border-color: #e50914;
        }
        .popup-media-item img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border-radius: 6px;
            background: #222;
        }
        .popup-media-item .media-info {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 6px;
        }
        .popup-media-item .media-info span {
            font-size: 9px;
            color: #ccc;
            text-align: center;
        }
        .popup-media-item .btn-container {
            display: flex;
            gap: 4px;
            margin-top: 6px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .popup-media-item .btn-container button {
            background: rgba(0, 0, 0, 0.6);
            border: none;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 30px;
            font-size: 11px;
            cursor: pointer;
            transition: 0.2s;
        }
        .popup-media-item .btn-container button:hover {
            background: #e50914;
            transform: scale(1.1);
        }
        .popup-media-item .btn-container .share-btn {
            background: rgba(30, 144, 255, 0.6);
        }
        .popup-media-item .btn-container .share-btn:hover {
            background: #1e90ff;
        }
        .popup-media-item .btn-container .delete-btn {
            background: rgba(229, 9, 20, 0.6);
        }
        .popup-media-item .btn-container .delete-btn:hover {
            background: #e50914;
        }
        .popup-media-item .btn-container .view-btn {
            background: rgba(50, 205, 50, 0.6);
        }
        .popup-media-item .btn-container .view-btn:hover {
            background: #32cd32;
        }
        .popup-empty-msg {
            color: #aaa;
            text-align: center;
            grid-column: 1 / -1;
            padding: 30px;
            font-size: 14px;
        }

        /* ===== PHOTO VIEWER MODAL ===== */
        .photo-viewer-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999999;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }
        .photo-viewer-modal.active {
            display: flex;
        }
        .photo-viewer-modal .viewer-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        .photo-viewer-modal .viewer-content img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        }
        .photo-viewer-modal .viewer-close {
            position: absolute;
            top: -40px;
            right: -40px;
            background: rgba(229, 9, 20, 0.8);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            transition: 0.2s;
        }
        .photo-viewer-modal .viewer-close:hover {
            background: #e50914;
            transform: scale(1.1);
        }
        @media (max-width: 600px) {
            .photo-viewer-modal .viewer-close {
                top: 10px;
                right: 10px;
                width: 36px;
                height: 36px;
                font-size: 18px;
            }
        }

        /* ===== GUIDE MODAL ===== */
        .guide-modal-parent {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 999999;
            display: none;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
        }
        .guide-modal-parent.active {
            display: flex;
        }
        .guide-content-parent {
            background: #111;
            border-radius: 16px;
            max-width: 90%;
            width: 550px;
            max-height: 85%;
            overflow-y: auto;
            padding: 25px;
            border: 1px solid #e50914;
            color: #eee;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            position: relative;
        }
        .guide-content-parent h3 {
            color: #e50914;
            margin-bottom: 15px;
            text-align: center;
        }
        .guide-content-parent ul {
            list-style: none;
            padding-left: 0;
        }
        .guide-content-parent li {
            margin-bottom: 12px;
            border-bottom: 1px solid #222;
            padding-bottom: 8px;
        }
        .guide-content-parent li i {
            width: 24px;
            margin-right: 8px;
            color: #e50914;
        }
        .guide-content-parent .close-guide-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            background: rgba(229, 9, 20, 0.8);
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            transition: 0.2s;
        }
        .guide-content-parent .close-guide-btn:hover {
            background: #e50914;
            transform: scale(1.1);
        }

        /* ===== SCROLLBAR ===== */
        .channels-panel-parent::-webkit-scrollbar,
        .guide-content-parent::-webkit-scrollbar,
        .popup-content::-webkit-scrollbar {
            width: 4px;
        }
        .channels-panel-parent::-webkit-scrollbar-track,
        .guide-content-parent::-webkit-scrollbar-track,
        .popup-content::-webkit-scrollbar-track {
            background: #111;
        }
        .channels-panel-parent::-webkit-scrollbar-thumb,
        .guide-content-parent::-webkit-scrollbar-thumb,
        .popup-content::-webkit-scrollbar-thumb {
            background: #e50914;
            border-radius: 10px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 600px) {
            .channels-panel-parent {
                width: 90%;
                max-width: 320px;
                padding: 15px 10px;
            }
            .channels-grid-parent {
                grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
                gap: 10px;
            }
            .channel-card-parent img {
                width: 40px;
                height: 40px;
            }
            .channel-card-parent span {
                font-size: 9px;
            }
            .media-popup-parent {
                min-width: auto;
                width: 95%;
                padding: 15px;
            }
            .popup-content {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 10px;
            }
            .popup-media-item img {
                height: 80px;
            }
            .guide-content-parent {
                width: 95%;
                padding: 15px;
                font-size: 13px;
                max-height: 80%;
            }
        }
        @media (max-width: 400px) {
            .channels-grid-parent {
                grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
                gap: 8px;
            }
            .channel-card-parent {
                padding: 6px 3px;
            }
            .channel-card-parent img {
                width: 32px;
                height: 32px;
            }
            .channel-card-parent span {
                font-size: 8px;
            }
            .popup-content {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }
            .popup-media-item img {
                height: 60px;
            }
        }
        /* ===== RESPONSIVE GLOBAL ===== */
        @media (max-width: 768px) {
            .header-spacer {
                height: 80px;
            }
            header .logo-link img {
                height: 50px;
            }
            .header-menu-wrapper {
                margin-left: 10px;
            }
            .header-menu .menu-item {
                font-size: 13px;
                padding: 8px 14px;
            }
            .header-menu .menu-item i {
                font-size: 14px;
            }
            .fixed-footer {
                height: 50px;
                gap: 8px;
            }
            .fixed-footer .footer-btn {
                font-size: 11px;
                padding: 6px 12px;
                height: 32px;
            }
            .fixed-footer .footer-btn i {
                font-size: 13px;
            }
            .texte-bande {
                font-size: 20px !important;
            }
        }

        @media (max-width: 480px) {
            .header-spacer {
                height: 70px;
            }
            header .logo-link img {
                height: 40px;
            }
            .header-menu .menu-item {
                font-size: 12px;
                padding: 6px 12px;
            }
            .header-menu .menu-item i {
                font-size: 12px;
            }
            .fixed-footer {
                height: 44px;
                gap: 5px;
            }
            .fixed-footer .footer-btn {
                font-size: 10px;
                padding: 4px 10px;
                height: 28px;
            }
            .fixed-footer .footer-btn i {
                font-size: 11px;
            }
            #recherche-chaines input {
                font-size: 14px;
                padding: 8px;
            }
            .buttons-container .sport-button {
                flex: 0 1 45%;
                max-width: 100%;
                min-width: 80px;
                font-size: 12px;
                padding: 10px 8px;
                white-space: normal;
            }
            .texte-bande {
                font-size: 16px !important;
            }
        }

        /* ===== SCROLLBAR GLOBAL ===== */
        ::-webkit-scrollbar {
            width: 8px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff0000;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #cc0000;
        }

        /* ===== IFRAME - DÉSACTIVER LE PLEIN ÉCRAN AUTOMATIQUE ===== */
        .video-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            overflow: hidden;
        }

        /* ===================================================== */
        /* ===== BOUTON FLOTTANT TÉLÉCHARGEMENT APPLICATION ===== */
        /* ===================================================== */
        #installAppBtn {
            position: fixed;
            bottom: 120px;
            right: 16px;
            z-index: 9997;
            display: none;
            padding: 14px 24px;
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 900;
            box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
            transition: transform 0.3s, box-shadow 0.3s;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.5px;
            font-family: 'Segoe UI', Arial, sans-serif;
            text-transform: uppercase;
            animation: pulse-install 2s infinite;
        }

        #installAppBtn:hover {
            transform: scale(1.08);
            box-shadow: 0 8px 35px rgba(255, 0, 0, 0.7);
        }

        #installAppBtn i {
            font-size: 22px;
            color: #fff;
        }

        @keyframes pulse-install {
            0%, 100% { 
                box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
            }
            50% { 
                box-shadow: 0 6px 40px rgba(255, 0, 0, 0.8);
            }
        }

        @media (max-width: 768px) {
            #installAppBtn {
                bottom: 110px;
                right: 12px;
                padding: 12px 18px;
                font-size: 14px;
                gap: 10px;
            }
            #installAppBtn i {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            #installAppBtn {
                bottom: 100px;
                right: 10px;
                padding: 10px 14px;
                font-size: 12px;
                gap: 8px;
                border-radius: 40px;
            }
            #installAppBtn i {
                font-size: 16px;
            }
        }

        /* ===================================================== */
        /* ===== MENU FLOTTANT GAUCHE ===== */
        /* ===================================================== */
        #floating-menu-btn {
    display: flex !important;
}
        #floating-menu-btn {
            position: fixed;
            bottom: 110px;
            left: 0;
            background: #cc0000;
            color: white;
            border: none;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
            padding: 10px 12px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.4);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: menuPulse 2s infinite;
            min-width: 44px;
            min-height: 44px;
        }
        #floating-menu-btn:hover {
            padding-left: 18px;
            background: #e60000;
        }
        #floating-menu-btn i {
            font-size: 22px;
            color: white;
            pointer-events: none;
        }

        @keyframes menuPulse {
            0%, 100% { box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4); }
            50% { box-shadow: 0 5px 30px rgba(204, 0, 0, 0.8); }
        }

        #floating-menu-panel {
            position: fixed;
            left: -260px;
            top: 0;
            width: 240px;
            height: 100%;
            background-color: #111;
            padding-top: 80px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: left 0.35s ease;
            z-index: 9998;
            box-shadow: 4px 0 12px rgba(0,0,0,0.5);
            overflow-y: auto;
        }
        #floating-menu-panel button {
            background-color: red;
            color: white;
            border: none;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: bold;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        #floating-menu-panel button:hover {
            background-color: #cc0000;
            padding-left: 28px;
        }
        #floating-menu-panel.open {
            left: 0;
        }

        @media (max-width: 600px) {
            #floating-menu-btn {
                bottom: 95px;
                min-width: 38px;
                min-height: 38px;
                padding: 8px 10px;
            }
            #floating-menu-btn i {
                font-size: 18px;
            }
            #floating-menu-panel {
                width: 200px;
                left: -220px;
            }
            #floating-menu-panel button {
                padding: 10px 16px;
                font-size: 12px;
            }
        }

        /* ===================================================== */
        /* ===== BOUTON CHAT ===== */
        /* ===================================================== */
        #lookaa-chat-wrapper {
            position: fixed;
            bottom: 140px;
            right: 0;
            z-index: 999999;
            font-family: Arial, sans-serif;
        }
        #lookaa-chat-button {
            background: #cc0000;
            color: #fff;
            border: none;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            padding: 10px 12px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: chatPulse 2s infinite;
            min-width: 44px;
            min-height: 44px;
        }
        #lookaa-chat-button:hover {
            padding-right: 18px;
            background: #e60000;
        }
        #lookaa-chat-button i {
            font-size: 22px;
        }
        
        @keyframes chatPulse {
            0%, 100% { box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4); }
            50% { box-shadow: 0 5px 30px rgba(204, 0, 0, 0.8); }
        }

        #lookaa-chat-box {
            width: 320px;
            height: 420px;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
            display: none;
            flex-direction: column;
            position: fixed;
            bottom: 180px;
            right: 20px;
            z-index: 10002;
            border: 1px solid rgba(255,255,255,0.1);
        }
        #lookaa-chat-header {
            background: #cc0000;
            color: #fff;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            font-weight: bold;
        }
        #lookaa-close {
            cursor: pointer;
            font-weight: bold;
            font-size: 18px;
            display: flex;
            align-items: center;
            padding: 0 8px;
            transition: transform 0.3s;
        }
        #lookaa-close:hover {
            transform: rotate(90deg);
        }