
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }
        .header {
            background-color: #FF0000;
            color: white;
            padding: 10px;
            box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
        }
        .header img {
            max-width: 150px;
            margin-left: 4px;
            vertical-align: middle;
        }
        .header h1 {
            display: inline-block;
            margin-left: 10px;
            vertical-align: middle;
        }
        .navbar {
            background-color: #fff;
            box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        .navbar a {
            float: left;
            display: block;
            color: #333;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            font-size: 17px;
        }
        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }
        .container {
            max-width: 100%;
            margin: 20px auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
        }
        .channel-info {
            width: 25%;
            background-color: #fff;
            box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
            padding: 20px;
            position: relative;
        }
        .channel-info img {
            max-width: 100px;
            margin-bottom: 10px;
            display: block;
            margin-left: auto;
            margin-right: auto;
            border-radius: 50%; /* Make the logo round */
        }
        .channel-info h2, .channel-info p {
            text-align: center;
        }
        .social-links {
            position: relative;
            display: flex;
            justify-content: center;
            bottom: 10px;
            left: 10px;
            top: 10px;
        }
        .social-links button {
            color: #fff;
            background-color: #333;
            border: none;
            padding: 5px 20px;
            border-radius: 5px;
            margin-right: 5px;
            cursor: pointer;
        }
        .social-links button:last-child {
            margin-right: 0;
        }
        .social-links button:hover {
            background-color: #FF0000;
        }
        .video-list {
            width: 70%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .video {
            width: calc(33.33% - 20px);
            margin-bottom: 20px;
            background-color: #fff;
            box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .video:hover {
            transform: translateY(-5px);
        }
        .video iframe {
            width: 100%;
            height: 200px;
            border: none;
        }
        .video-info {
            padding: 10px;
            border-top: 1px solid #eee;
        }
        .video-title, .video-description {
            display: none;
        }