        /* Reset y estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            max-width: 1024px;
            margin: 0 auto;
            background: #1E262A;
            font-family: Arial, sans-serif;
            color: #fff;
            line-height: 1.6;
        }
        
        /* Header */
        header {
            color: #505050;
        }
        
        nav {
            background-color: #27313b;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        nav a {
            display: inline-block;
            padding: 8px;
        }
        
        nav a img {
            height: 36px;
            width: auto;
        }
        
        /* Contenedor principal */
        main {
            padding: 5px;
        }
        
        /* Bloques de anuncios */
        .ads {
            background: #000;
            color: #fff;
            margin: 5px 0;
            padding: 10px;
            text-align: center;
        }
        
        /* Reproductores de video */
        .video-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 10px 0;
        }
        
        .video {
            background: #000;
            text-align: center;
            padding: 5px;
            height: 247px;
        }
        
        .video iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Sección de redes sociales */
        .social-links {
            background: #000;
            margin: 10px 0;
            padding: 15px;
            text-align: center;
        }
        
        .social-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        
        .social-links li {
            flex: 1 0 45%;
            max-width: 250px;
        }
        
        .social-links img {
            width: 100%;
            height: auto;
            border: 3px solid #d2d2d2;
            border-radius: 3px;
            transition: transform 0.3s;
        }
        
        .social-links img:hover {
            transform: scale(1.05);
        }
        
        /* Descripción del contenido */
        .content-description {
            background: #000;
            margin: 10px 0;
            padding: 20px;
        }
        
        .content-description h1, 
        .content-description h2, 
        .content-description h3 {
            margin: 15px 0;
            color: #fff;
        }
        
        .content-description p {
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            border: 2px solid #a940a2;
            background-color: #000;
            text-align: center;
            padding: 15px;
            margin-top: 20px;
            border-radius: 10px;
        }
        
        footer p {
            margin-bottom: 10px;
            font-size: 12px;
            color: bisque;
        }
        
        footer a {
            color: #3be6e8;
            text-decoration: none;
            margin: 0 5px;
        }
        
        footer a:hover {
            text-decoration: underline;
        }
        
        /* Media Queries */
        @media screen and (min-width: 547px) {
            .video {
                height: 400px;
            }
            
            .social-links li {
                flex: 1 0 30%;
            }
        }
        
        @media screen and (min-width: 768px) {
            .video-container {
                flex-direction: row;
            }
            
            .video {
                flex: 1;
            }
            
            .social-links li {
                flex: 1 0 20%;
            }
        }