        /* ===== 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;
        }

        /* ===== BOUTON BET COLLÉ AU FOOTER ===== */
        .bet-footer-wrapper {
            position: fixed;
            bottom: 56px;
            left: 0;
            width: 100%;
            z-index: 9998;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            padding: 0;
            margin: 0;
            background: transparent;
        }

        .lookaa-bet-fixed {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 10px 24px;
            background: #1a1a1a;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            border-radius: 0;
            cursor: pointer;
            border: 1px solid #444;
            border-bottom: none;
            transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
            letter-spacing: 0.5px;
            width: auto;
            min-width: 120px;
            position: relative;
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.4);
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            margin: 0;
            height: 46px;
        }

        .lookaa-bet-fixed:hover {
            background: #ff0000;
            color: #fff;
            border-color: #ff0000;
            transform: translateY(-3px);
        }

        .lookaa-bet-fixed:hover i {
            color: #fff;
        }

        .lookaa-bet-fixed img {
            width: 30px;
            height: 30px;
            animation: pulse-bet 1.8s infinite;
            transition: filter 0.3s;
        }

        .lookaa-bet-fixed:hover img {
            filter: brightness(0) invert(1);
        }

        @keyframes pulse-bet {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* ===== OVERLAY BET ===== */
        .lookaa-iframe-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(4px);
            z-index: 1000000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .lookaa-iframe-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .lookaa-iframe-box {
            width: 94%;
            max-width: 430px;
            height: 78vh;
            background: #000;
            border-radius: 18px;
            overflow: hidden;
            position: relative;
            transform: scale(0.35) translateY(220px);
            opacity: 0;
            transition: transform 0.45s ease, opacity 0.45s ease;
            border: 1px solid #333;
        }

        .lookaa-iframe-overlay.active .lookaa-iframe-box {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .lookaa-iframe-box iframe {
            width: 100%;
            height: 100%;
            border: none;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            touch-action: pan-y;
        }

        .lookaa-close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: none;
            background: rgba(0,0,0,0.75);
            color: #ff0000;
            font-size: 25px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .lookaa-close-btn:hover {
            background: rgba(255, 0, 0, 0.3);
        }

        .no-scroll {
            overflow: hidden;
            height: 100vh;
        }

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

        /* ===== STYLE CARROUSEL FIFA WORLD CUP ===== */
        .lkx-carousel-wrapper {
            background: #111;
            border-radius: 12px;
            padding: 10px 8px;
            margin: 10px 0 14px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        }

        .lkx-carousel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .lkx-carousel-header h3 {
            color: #fff;
            font-size: 1.1rem;
            margin: 0;
        }

        .lkx-carousel-header h3 i {
            color: #ff0000;
            margin-right: 6px;
        }

        .lkx-refresh-btn {
            background: rgba(255, 255, 255, 0.08);
            border: none;
            color: #fff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.2s, transform 0.2s;
        }

        .lkx-refresh-btn:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: rotate(30deg);
        }

        .lkx-carousel-viewport {
            position: relative;
            overflow: hidden;
        }

        .lkx-carousel-track-container {
            overflow: hidden;
        }

        .lkx-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .lkx-slide {
            flex: 0 0 100%;
            display: flex;
            gap: 6px;
            padding: 2px 0;
        }

        .lkx-card {
            flex: 1;
            background: #1a1a1a;
            border-radius: 8px;
            padding: 8px 6px;
            text-align: left;
            cursor: pointer;
            transition: transform 0.25s, box-shadow 0.25s;
            border: 1px solid #2a2a2a;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .lkx-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 0, 0, 0.15);
            border-color: #ff0000;
        }

        .lkx-card .lkx-league {
            font-size: 11px;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 3px;
            text-align: left;
            font-weight: 600;
        }

        .lkx-card .team-line {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 6px;
            margin: 2px 0;
        }

        .lkx-card .team-line .team-logo-container {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            flex-shrink: 0;
        }

        .lkx-card .team-line .team-logo-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .lkx-card .team-line .team-logo-container i {
            font-size: 18px;
            color: #aaa;
        }

        .lkx-card .team-line .team-name {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }

        .lkx-card .lkx-time {
            font-size: 12px;
            color: #aaa;
            display: inline-flex;
            align-items: center;
            gap: 3px;
            background: #222;
            padding: 2px 8px;
            border-radius: 3px;
            border: 1px solid #333;
            white-space: nowrap;
            margin-top: 4px;
            align-self: flex-start;
            font-weight: 600;
        }

        .lkx-card .lkx-time.lkx-live {
            background: #ff0000;
            color: #ffffff !important;
            border-color: #ff0000;
            font-weight: 700;
            animation: pulse-live 1.6s infinite;
        }

        .lkx-card .lkx-time.lkx-live i {
            color: #ffffff;
        }

        @keyframes pulse-live {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* ===== FLÈCHES DU CARROUSEL (cachées par défaut, apparaissent au survol) ===== */
        .lkx-carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.2s, transform 0.2s, opacity 0.3s ease;
            z-index: 5;
            opacity: 0;
        }

        .lkx-carousel-viewport:hover .lkx-carousel-btn {
            opacity: 1;
        }

        .lkx-carousel-btn:hover {
            background: rgba(255, 0, 0, 0.7);
            transform: translateY(-50%) scale(1.08);
        }

        .lkx-prev {
            left: 2px;
        }

        .lkx-next {
            right: 2px;
        }

        @media (max-width: 600px) {
            .lkx-card .team-line .team-name {
                font-size: 13px;
            }
            .lkx-card .team-line .team-logo-container {
                width: 22px;
                height: 22px;
            }
            .lkx-card .team-line .team-logo-container i {
                font-size: 14px;
            }
            .lkx-card .lkx-time {
                font-size: 10px;
                padding: 1px 6px;
            }
            .lkx-carousel-btn {
                width: 24px;
                height: 24px;
                font-size: 12px;
            }
            .lkx-card .lkx-league {
                font-size: 9px;
            }
        }

        @media (max-width: 480px) {
            .lkx-card .team-line .team-name {
                font-size: 11px;
            }
            .lkx-card .team-line .team-logo-container {
                width: 18px;
                height: 18px;
            }
            .lkx-card .team-line .team-logo-container i {
                font-size: 12px;
            }
            .lkx-card .lkx-time {
                font-size: 9px;
                padding: 1px 4px;
            }
        }

        /* ===================================================== */
        /* ===== 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;
            }
            .bet-footer-wrapper {
                bottom: 50px;
            }
            .lookaa-bet-fixed {
                padding: 8px 18px;
                font-size: 14px;
                min-width: 100px;
                height: 40px;
            }
            .lookaa-bet-fixed img {
                width: 26px;
                height: 26px;
            }
        }

        @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;
            }
            .bet-footer-wrapper {
                bottom: 44px;
            }
            .lookaa-bet-fixed {
                padding: 6px 14px;
                font-size: 12px;
                min-width: 80px;
                height: 34px;
                border-top-left-radius: 8px;
                border-top-right-radius: 8px;
            }
            .lookaa-bet-fixed img {
                width: 22px;
                height: 22px;
            }
            .lookaa-iframe-box {
                width: 98%;
                height: 80vh;
                max-height: 500px;
                border-radius: 14px;
            }
            .lookaa-close-btn {
                width: 34px;
                height: 34px;
                font-size: 20px;
                top: 8px;
                right: 8px;
            }
        }

        /* ===== 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);
        }

/* ===================================================== */
/* ===== BOUTON SCORE (collé à droite au-dessus du chat) ===== */
/* ===================================================== */
#lookaa-score-wrapper {
    position: fixed;
    bottom: 190px;
    right: 0;
    z-index: 999999;
    font-family: Arial, sans-serif;
}
#lookaa-score-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: scorePulse 2s infinite;
    min-width: 44px;
    min-height: 44px;
}
#lookaa-score-button:hover {
    padding-right: 18px;
    background: #e60000;
}
#lookaa-score-button i {
    font-size: 22px;
}

@keyframes scorePulse {
    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); }
}

/* ===== OVERLAY SCORE ===== */
.lookaa-score-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    z-index: 1000001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.lookaa-score-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lookaa-score-box {
    width: 94%;
    max-width: 900px;
    height: 85vh;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transform: scale(0.35) translateY(220px);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
    border: 1px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
.lookaa-score-overlay.active .lookaa-score-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.lookaa-score-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* ===== BOUTON DE FERMETURE À L'EXTÉRIEUR - FOND ROUGE X BLANC ===== */
.lookaa-score-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #ff0000; /* ✅ Fond rouge */
    color: #ffffff; /* ✅ X blanc */
    font-size: 32px;
    font-weight: 900; /* ✅ Gras */
    cursor: pointer;
    z-index: 1000002;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
}
.lookaa-score-close-btn:hover {
    background: #cc0000; /* ✅ Rouge plus foncé au survol */
    transform: scale(1.15);
    box-shadow: 0 4px 30px rgba(255, 0, 0, 0.8);
}
.lookaa-score-close-btn.show {
    display: flex;
}
.lookaa-score-close-btn:hover {
    background: #ff0000;
    color: #fff;
    transform: scale(1.1);
}
.lookaa-score-close-btn.show {
    display: flex;
}

@media (max-width: 600px) {
    .lookaa-score-close-btn {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .lookaa-score-box {
        width: 98%;
        height: 80vh;
        max-height: 500px;
        border-radius: 14px;
    }
}