        :root {
            --red: #e64b4b;
            --gray-100: #0a0a0a;
            --gray-700: #e6e6e6;
            --container-w: 1100px;
        }

        body {
            margin: 0;
            font-family: 'Inter', system-ui;
            background: #000;
            color: var(--gray-700);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 32px;
            min-height: 100vh;
        }

        .nav-spacer {
            height: 90px;
        }

        @media (max-width: 600px) {
            .nav-spacer {
                height: 70px;
            }
        }


        main.card {
            width: 100%;
            max-width: var(--container-w);
            background: #111;
            border-radius: 18px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 420px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        }

        .left {
            padding: 48px 56px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
            background: #0d0d0d;
        }

        .eyebrow {
            background: var(--red);
            padding: 0.5rem 2rem;
            border-radius: 999px;
            color: #fff;
            font-weight: 600;
            font-size: 1.5rem;
            width: max-content;
        }

        h1 {
            margin: 0;
            font-size: 48px;
            color: #fff;
        }

        h1 .accent {
            color: var(--red);
        }

        p.lead {
            color: #b5b5b5;
            font-size: 18px;
            max-width: 60ch;
        }

        .right {
            padding: 36px;
            background: #0d0d0d;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .photo-frame {
            width: 320px;
            aspect-ratio: 3/4;
            border-radius: 14px;
            overflow: hidden;
            background: #222;
            position: relative;
            padding: 18px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }

        .photo-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Slider de Videos */
        .video-slider-title {
            font-size: 22px;
            color: #fff;
            font-weight: 600;
            margin: 20px 0;
            padding-left: 20px;
        }

        .swiper {
            width: 100%;
            padding-bottom: 40px;
        }

        .swiper-slide {
            width: 500px !important;
            display: flex;
            justify-content: center;
        }

        .video-card {
            width: 100%;
            max-width: 480px;
            display: flex;
            flex-direction: column;
            text-align: center;
            align-items: center;
        }

        .video-card iframe {
            width: 100%;
            height: 270px;
            border-radius: 14px;
            border: none;
        }

        .video-title {
            margin-top: 10px;
            font-size: 16px;
            color: #fff;
            font-weight: 600;
        }

        /* Auspiciadores */
        .auspiciadores-swiper .swiper-slide {
            width: 200px !important;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .auspiciador-card {
            width: 180px;
            height: 140px;
            background: #1a1a1a;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            transition: transform .2s ease;
        }

        .auspiciador-card:hover {
            transform: scale(1.05);
        }

        .auspiciador-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        footer.small {
            padding-top: 2rem;
        }

        /* Responsive */
        @media (max-width: 900px) {
            main.card {
                grid-template-columns: 1fr;
            }

            .swiper-slide {
                width: 90% !important;
            }
        }


        /* -------- MODAL VER EN VIVO -------- */
        /* =========================
   MODAL DE VIDEO (YOUTUBE STYLE)
========================= */

        .live-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .live-modal-content {
            position: relative;
            width: 90%;
            max-width: 960px;
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
        }

        /* iframe ocupa TODO el contenedor */
        .live-modal-content iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Botón cerrar */
        .live-close {
            position: absolute;
            top: 12px;
            right: 16px;

            width: 36px;
            height: 36px;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 22px;
            line-height: 1;

            color: #fff;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 50%;

            cursor: pointer;
            z-index: 10;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .live-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }


        .live-modal {
            display: none;
        }

        /* ---------------- NAVTOP DEFINITIVO ---------------- */
        .navtop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background: #1a1a1a;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Contenido centrado al ancho del card */
        .nav-inner {
            width: 100%;
            max-width: var(--container-w);
            padding: 0 56px;
            /* MISMO padding de la sección izquierda del card */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* LOGO alineado con “Este 6 de diciembre” */
        .nav-logo {
            height: 100px;
            margin-top: 10px;
            /* mueve el logo hacia abajo ligeramente */
        }

        .live-button {
            height: 90px;
            padding: 0 28px;

            background: #000;
            color: #fff;
            text-decoration: none;

            display: flex;
            align-items: center;

            font-weight: 600;
            font-size: 15px;

            border: 1px solid #444;
            box-sizing: border-box;

            /* Forma romboide */
            transform: skew(-15deg);
        }

        /* Contenido interno SIN inclinación */
        .live-content {
            display: flex;
            align-items: center;
            gap: 8px;

            transform: skew(15deg);
            /* ← corrige el texto */
        }

        /* Hover elegante */
        .live-button:hover {
            background: #111;
            border-color: #777;
        }

        /* Hover elegante */
        .live-button:hover {
            background: #111;
            border-color: #777;
        }


        .live-button:hover {
            background: #ff5c5c;
        }

        .antenna-icon {
            font-size: 18px;
        }

        .live-button {
            text-decoration: none !important;
        }

        .live-button:visited {
            text-decoration: none !important;
        }

        .left h2,
        .left h1 {
            line-height: 0.3;
        }

        .socials {
            margin-top: 18px;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            text-decoration: none;
            background: #222;
            box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.05);
        }

        .socials svg {
            width: 20px;
            height: 20px;
        }

        .swiper-button-next {
            color: #999 !important;
        }

        .swiper-button-prev {
            color: #999 !important;
        }

        .swiper-pagination-bullet-active {
            background: #999 !important;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .nav-inner {
                padding: 0 20px;
            }

            .nav-logo {
                height: 90px;
                margin-top: 20px;
            }

            .live-button {
                padding: 8px 14px;
                font-size: 14px;
            }

            .left h2,
            .left h1 {
                line-height: 1;
            }
        }





        /*Videos*/

        /* -------- GRID DE VIDEOS -------- */
        .videos-grid {
            grid-column: 1 / -1;
            display: grid;
            gap: 28px;
            padding: 20px;

            grid-template-columns: repeat(4, 1fr);
        }

        .video-item {
            background: #0d0d0d;
            border-radius: 16px;
            padding: 14px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .video-frame {
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 12px;
            overflow: hidden;
        }

        .video-frame iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-item-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            line-height: 1.3;
        }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .videos-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .videos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .videos-grid {
                grid-template-columns: 1fr;
            }
        }


        /* =========================
   GRID ESTILO YOUTUBE
========================= */

        .yt-grid {
            grid-column: 1 / -1;
            padding: 20px;
            display: grid;
            gap: 24px;
            grid-template-columns: repeat(4, 1fr);
        }

        .yt-card {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .yt-thumb {
            position: relative;
            display: block;
            border-radius: 12px;
            overflow: hidden;
            background: #000;
        }

        .yt-thumb img {
            width: 100%;
            display: block;
        }

        .yt-play {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: #fff;
            opacity: 0;
            background: rgba(0, 0, 0, 0.4);
            transition: opacity .2s ease;
        }

        .yt-thumb:hover .yt-play {
            opacity: 1;
        }

        .yt-title {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.3;
            color: #fff;
        }

        .yt-meta {
            font-size: 13px;
            color: #aaa;
        }

        .yt-thumb {
            cursor: pointer;
        }


        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .yt-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .yt-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .yt-grid {
                grid-template-columns: 1fr;
            }
        }

        .channel-header {
            display: flex;
            gap: 20px;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #222;
            margin-bottom: 20px;
        }

        .channel-header img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
        }

        .channel-info h1 {
            font-size: 26px;
            margin: 0;
            color: #fff;
        }

        .channel-meta {
            font-size: 14px;
            color: #aaa;
            margin-top: 4px;
        }


        /* ===============================
   CHANNEL HEADER
================================ */

        #channelHeader {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        #channelHeader img {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            object-fit: cover;
        }

        .channel-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
        }

        .channel-info h1 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
            color: #fff;
        }

        .channel-meta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 14px;
            color: #aaa;
        }

        .channel-meta span::after {
            content: "•";
            margin-left: 12px;
            color: #555;
        }

        .channel-meta span:last-child::after {
            content: "";
        }

        /* ===============================
   RESPONSIVE
================================ */

        @media (max-width: 600px) {
            #channelHeader {
                flex-direction: column;
                align-items: flex-start;
            }

            #channelHeader img {
                width: 80px;
                height: 80px;
            }

            .channel-info h1 {
                font-size: 20px;
            }

            .channel-meta {
                gap: 8px;
                font-size: 13px;
            }
        }



        .canales-list {
            grid-column: 1 / -1;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .canal-card {
            background: #1a1a1a;
            border: 1px solid #2a2a2a;
            border-radius: 14px;
            padding: 24px;
            text-decoration: none;
            color: #fff;
            transition: transform .2s ease, border-color .2s ease;
        }

        .canal-card:hover {
            transform: translateY(-4px);
            border-color: #e64b4b;
        }

        .canal-card h3 {
            margin: 0 0 8px;
            font-size: 18px;
        }

        .canal-card p {
            margin: 0;
            font-size: 14px;
            color: #aaa;
        }

        /* ---------- SLIDER FOTO PERFIL ---------- */

        .photo-slider {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 14px;
        }

        .photo-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .photo-slide.active {
            opacity: 1;
            z-index: 1;
        }

        .photo-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.4s ease;
        }

        /* Hover: color + pausa */
        .photo-slider:hover img {
            filter: grayscale(0%);
        }

        @media (max-width: 600px) {
            .right {
                padding: 20px;
            }

            .photo-frame {
                max-width: 260px;
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .live-button {
                padding: 10px 14px;
                font-size: 13px;
            }
        }


        .canal-card {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .canal-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            flex-shrink: 0;
            overflow: hidden;
            background: #111;
        }

        .canal-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .canal-text h3 {
            margin: 0 0 6px;
            font-size: 17px;
        }

        .canal-text p {
            margin: 0;
            font-size: 14px;
            color: #aaa;
        }

        .photo-slider {
            position: absolute;
            inset: 0;
        }

        .photo-slider img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;

            opacity: 0;
            transition: opacity 1s ease, filter 0.3s ease;
            filter: grayscale(100%);
        }

        .photo-slider img.active {
            opacity: 1;
        }

        .photo-frame:hover img.active {
            filter: grayscale(0%);
        }

        footer.small a:hover {
            color: #fff;
            text-decoration: underline;
        }