.logo-retro {
  max-width: 150px;
  width: 100%;
}
.video-ok{
  max-height: 350px;
}

/* Sección Videos */
 .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        
        .videos {
            padding: 2rem 2rem;
            
        }
        .videos__title {
            text-align: center;
            font-size: 2.5rem;
            color: #999999;
            margin-bottom: 2rem;
            text-transform: uppercase;
}
        .main-content {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .video-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .video-thumbnail {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            background-size: cover;
            background-position: center;
        }
        .video-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .video-info {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .video-title {
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 5px;
            color: #1e1e1e;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .video-description {
            font-size: 1.2em;
            color: #666;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            flex-grow: 1; /* Para que ocupe el espacio disponible */
        }
        .video-stats {
            font-size: 0.85em;
            color: #888;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .views {
            font-weight: bold;
        }
        .channel-info {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background-color: #797878;
            border-radius: 8px;
        }
        .channel-info h2 {
            color: #1e1e1e;
            margin-bottom: 10px;
        }
        .channel-info p {
            color: #1a1a1a;
            margin-bottom: 20px;
        }
        .channel-link {
            display: inline-block;
            background-color: #ff0000;
            color: #fff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .channel-link:hover {
            background-color: #cc0000;
        }
        footer {
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            background-color: #1e1e1e;
            color: #bbb;
            font-size: 0.9em;
        }

        /* Estilos para agregar un botón de "Play" al thumbnail */
        .video-thumbnail::before {
            content: '\25B6'; /* Código Unicode para el triángulo de play */
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3em;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 0 0 10px rgba(0,0,0,0.5);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .video-card:hover .video-thumbnail::before {
            opacity: 1;
        }
