/* --- VARIABLES Y CONFIGURACIÓN GENERAL --- */
        :root {
            --accent: #00ffcc; 
            --accent-dark: #049494;
            --bg: #07070a;
            --card-bg: #111118;
            --border-color: #1f212a;
            --text-muted: #8e92a2;
            
            /* NUEVOS TONOS AZUL MARINO PREMIUM STYLE */
            --stream-navy: #0d1b2a;
            --stream-navy-hover: #1b263b;
            --stream-blue-glow: rgba(0, 191, 255, 0.2);
            --stream-volt: #ccff00;
        }

        body { 
            background: var(--bg); 
            color: #fff; 
            font-family: 'Inter', sans-serif; 
            margin: 0; 
            padding: 0; 
            overflow-x: hidden;
            padding-top: 70px; /* Espacio de respeto para el logo de 80px */
        }

        /* --- HEADER FIJO AL RAS DEL LOGO (80PX) --- */
        #titulo-fijo {
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%; 
            z-index: 1000; 
            background-color: rgba(11, 11, 24, 0.85); 
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            display: flex; 
            justify-content: center; 
            align-items: center;
            padding: 0 20px; 
            border-bottom: 1px solid var(--border-color); 
            box-sizing: border-box;
            height: 60px; 
        }

        #titulo-fijo a {
            text-decoration: none; 
            display: flex; 
            align-items: center; 
            gap: 14px;
            height: 100%;
        }

        .logo-img {
            height: 80px; 
            width: auto;
            display: block;
            object-fit: contain;
            margin: 0; 
            filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.5));
        }

        .badge-hd {
            background: linear-gradient(135deg, var(--accent-dark), #025252); 
            color: #fff; 
            font-family: 'Poppins', sans-serif;
            font-size: 11px; 
            font-weight: 900; 
            padding: 3px 8px; 
            border-radius: 6px; 
            box-shadow: 0 0 15px rgba(0, 255, 204, 0.2); 
            border: 1px solid rgba(255,255,255,0.1); 
            letter-spacing: 1px;
        }

        /* --- SECCIÓN TÍTULO SECUNDARIO --- */
        .seccion-introduccion {
            max-width: 850px;
            margin: 25px auto 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .titulo-en-vivo {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 5px 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .titulo-en-vivo span {
            color: var(--accent);
        }

        /* --- CONTENEDOR DEL REPRODUCTOR Y BOTÓN TELEGRAM FLOTANTE --- */
        .player-container { 
            padding: 0 20px; 
            margin-bottom: 25px; 
            margin-top: 15px;
        }
        
        .player-wrap {
            width: 100%; 
            max-width: 850px; 
            margin: 0 auto;
            background: #000; 
            border-radius: 16px; 
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
            position: relative;
        }
        
        .video-box { 
            position: relative; 
            padding-bottom: 56.25%; 
            height: 0; 
            background: #000; 
        }
        
        .video-box iframe { 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            border: none; 
        }

        /* BOTÓN TELEGRAM SUPERPUESTO */
        .bot-telegram-player {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10;
            background: rgba(0, 136, 204, 0.9);
            color: #ffffff;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 700;
            padding: 8px 14px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
            transition: all 0.2s ease;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(0, 136, 204, 0.3);
        }

        .bot-telegram-player:hover {
            background: #0088cc;
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(0, 136, 204, 0.6);
        }

        /* --- DISEÑO DEL CONTENIDO INFERIOR --- */
        .container { 
            padding: 0 20px; 
            max-width: 550px; 
            margin: 0 auto; 
        }
        
        /* BOTÓN ACTUALIZAR REPRODUCCIÓN (NUEVO ESTILO AZUL MARINO PREMIUM) */
        .btn-action-full {
            background: var(--stream-navy);
            border: 1px solid #00bfff; /* Borde azul eléctrico de alta definición */
            padding: 16px 12px; 
            border-radius: 14px; 
            color: #ffffff; 
            text-align: center; 
            text-decoration: none; 
            font-size: 13px; 
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase; 
            display: flex; 
            align-items: center;
            justify-content: center; 
            gap: 8px; 
            cursor: pointer; 
            transition: all 0.2s ease;
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px var(--stream-blue-glow);
            letter-spacing: 0.5px;
        }

        .btn-action-full i {
            color: #00bfff; /* Ícono brillante */
            font-size: 16px;
        }

        .btn-action-full:hover {
            background: var(--stream-navy-hover);
            border-color: #00ffcc; /* Cambia a turquesa al pasar el cursor */
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 255, 204, 0.2);
        }

        .btn-action-full:active { 
            transform: scale(0.98); 
        }

        /* --- CONSOLA DE DIAGNÓSTICO MODERNA --- */
        .status-console {
            background: #0c0c12;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 40px;
            position: relative;
        }

        .console-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            padding-bottom: 10px;
        }

        .console-title {
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .console-title i {
            color: var(--stream-volt);
            font-size: 15px;
        }

        .live-indicators {
            display: flex;
            gap: 12px;
        }

        .ind-item {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 10px;
            font-weight: 700;
            color: #4e5264;
            text-transform: uppercase;
        }

        .ind-item::before {
            content: "";
            width: 6px;
            height: 6px;
            background: #00ff66;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 8px #00ff66;
        }

        .ind-item.alert-ind::before {
            background: #ffcc00;
            box-shadow: 0 0 8px #ffcc00;
        }

        .console-body p {
            font-size: 13px;
            color: #b3b7c9;
            line-height: 1.6;
            margin: 0 0 16px 0;
            text-align: left;
        }

        /* BOTÓN OPTIMIZAR CONEXIÓN (CONCORDANCIA CON EL BOTÓN SUPERIOR) */
        .btn-optimize {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            border: 2px solid var(--stream-volt);
            color: var(--stream-volt);
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 800;
            padding: 12px;
            border-radius: 12px;
            width: 100%;
            box-sizing: border-box;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-optimize:hover {
            background: var(--stream-volt);
            color: #000;
            box-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
            transform: translateY(-1px);
        }
        
        /* --- BLOQUEADOR DE PUBLICIDAD INTERFAZ --- */
        #superadblocker { 
            position: fixed; 
            inset: 0; 
            background: var(--bg); 
            z-index: 10000; 
            display: none; 
            align-items: center; 
            justify-content: center; 
            padding: 25px; 
        }
        
        .ad-ui { 
            background: var(--card-bg); 
            padding: 40px 30px; 
            border-radius: 20px; 
            border: 1px solid var(--border-color); 
            text-align: center; 
            max-width: 340px; 
        }
        
        .btn-reload { 
            background: var(--accent); 
            border: none; 
            padding: 14px; 
            width: 100%; 
            border-radius: 10px; 
            margin-top: 24px; 
            font-weight: 700; 
            font-family: 'Poppins', sans-serif;
            cursor: pointer; 
            color: #000; 
        }

        footer { 
            text-align: center; 
            padding-bottom: 40px; 
            color: #383a44; 
            font-size: 11px; 
            font-weight: 600; 
        }

        /* --- AJUSTE RESPONSIVO MÓVIL --- */
        @media (max-width: 480px) {
            #titulo-fijo {
                height: 60px; 
                padding: 0 12px;
            }
            .logo-img {
                height: 70px; 
                max-width: 180px;
            }
            body {
                padding-top: 74px; 
            }
            .titulo-en-vivo {
                font-size: 18px; 
            }
        }