
.container-live {
            display: flex;
            flex-direction: column;
            gap: 20px;
                padding: 90px 10px 50px 10px;
        }
	.video-info{
	padding: 20px 0 20px 0;
	}

        @media (min-width: 768px) {
            .container-live {
                flex-direction: row;
            }
        }

        .main-video {
            flex: 2;
        }

        .main-video iframe {
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 12px;
        }

        .video-info h1 {
            font-family: 'Roboto Condensed';
            font-weight: 600;
            font-size: 24px;
        }

        #category-title {
            font-family: 'Roboto Condensed';
            font-weight: 600;
            font-size: 24px;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            margin: 10px 0;
            gap: 10px;
        }

        .channel-info {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .channel-info.canal img {
            width: 30px;
            height: 30px;
        }
        .channel-info.youtube img {
            width: 24px;
            height: 24px;
        }

        .channel-info span {
            font-family: 'Roboto Condensed';
            font-weight: 600;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .share-button {
            background-color: #000;
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            text-decoration: none;
        }

	.share-button:hover{
	color: #fff
	}

        .share-button img {
            width: 20px;
        }

        .video-divider {
            border-top: 1px solid #ccc;
            margin: 16px 0;
        }

        .video-description h2,
        .comments-section h2 {
            font-family: 'Roboto Condensed';
            font-weight: 600;
            font-size: 16px;
        }

        .video-description p {
            font-family: 'Roboto Condensed';
            font-size: 15px;
            color: #4B5563;
        }

        .comments-section {
            margin-top: 30px;
        }

        .related {
            flex: 1;
        }

        .related-item {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
        }

        .related-item img {
            width: 200px;
            border-radius: 6px;
    max-width: fit-content;
        }

        .related-item a {
            text-decoration: none;
            font-size: 14px;
            color: #111;
            font-weight: 500;
        }

        .related-title {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: Roboto Condensed;
            font-weight: 600;
            font-size: 16px;
            line-height: 120%;
            letter-spacing: 0%;

        }

        .related-item span {
            font-family: Roboto Condensed;
            font-weight: 500;
            font-size: 14px;
            line-height: 120%;
            letter-spacing: 0%;
            color: #4B5563;
        }

        /* Swiper Styles */
        .category-swiper {
            width: 100%;
            padding-bottom: 12px;
        }

        .category-swiper .swiper-wrapper {
            display: flex;
        }

        .category-swiper .swiper-slide {
            flex-shrink: 0;
            width: 66.6666%;
            /* mobile fallback: 1.5 slides */
            display: flex;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .category-swiper .swiper-slide {
                width: 50%;
                /* 2 slides no desktop */
            }
        }

        @media (min-width: 480px) {
            .category-swiper .swiper-slide {
                width: 50%;
            }
        }


        .category-swiper button {
            width: auto;
            padding: 8px 16px;
            background: transparent;
            border: 2px solid #7b2cbf;
            color: #7b2cbf;
            border-radius: 20px;
            font-size: 14px;
            white-space: nowrap;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .category-swiper button.active {
            background-color: #7b2cbf;
            color: #fff;
        }

        @media (min-width: 768px) {
            .container-live {
                justify-content: center;
                gap: 0;
            }

            .main-video {
                width: 978px;
                max-width: 978px;
            }

            .related {
                width: 389px;
                max-width: 389px;
                margin-left: 32px;
            }
        }
