.channel-header {
    background-color: transparent;
}

/* Banner */
.channel-banner {
    width: 100%;
    aspect-ratio: 6.2 / 1;
    border-radius: 15px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-info-2 {
    display: flex;
    align-items: center;
    padding-top: 20px;
    margin-bottom: 20px;
}

.avatar-section img {
    width: 168px;
    height: 168px;
    border-radius: 50%;
}

.info-section {
    margin-left: 20px;
}

.channel-name-2 {
    font-size: 24px;
    font-weight: bold;
}

.channel-description-2 {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

.video-count-2 {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

.subscribe-btn-2 {
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    margin-top: 15px;
    cursor: pointer;
}

.subscribe-btn-2:hover {
    background-color: #cc0000;
    color: #ffffff;
}



.tabs {
    display: flex;
    justify-content: left;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

.tab.active {
    border-bottom: 3px solid #cc0000;
    color: #cc0000;
}


/* Mobile / phone styles */
@media (max-width: 768px) {
.channel-info-2 {
        flex-direction: column;  /* Stack the items vertically on mobile */
        align-items: center;     /* Center the content */
        text-align: center;      /* Align text to the center */
    }

    .avatar-section {
        margin-right: 0;
        margin-bottom: 15px;  /* Space between image and text on mobile */
    }

    .channel-avatar-2 {
        width: 80px;  /* Smaller avatar on mobile */
        height: 80px;
    }

    .info-section {
        width: 100%;  /* Full width for the text section */
    }

    .channel-name-2 {
        font-size: 20px;  /* Slightly smaller font for mobile */
    }

    .video-count-2 {
        font-size: 14px;  /* Adjust size for mobile */
        margin-top: 5px;
    }

    .channel-description-2 {
        font-size: 13px;  /* Adjust size for mobile */
        margin-top: 10px;
    }

    .subscribe-btn-2 {
        width: 100%;  /* Full width button on mobile */
        margin-top: 15px;
    }
}
