/* YouTube Channels Section */
.youtube {
    padding: 20px 0 20px;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
}

.youtube-channel {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.youtube-channel:hover {
    transform: translateY(-10px);
}

.channel-banner img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.channel-info {
    padding: 20px;
    text-align: center;
    position: relative;
}

.channel-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: -60px auto 15px;
    border: 4px solid white;
    box-shadow: var(--box-shadow);
}

.channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.channel-stats {
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.subscribers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.subscribers i {
    color: var(--primary-color);
}

.count {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.label {
    color: var(--secondary-color);
}

.channel-info p {
    margin: 15px 0;
    color: var(--secondary-color);
}

.btn-youtube {
    background-color: #FF0000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-youtube:hover {
    background-color: #CC0000;
    color: white;
}

.btn-youtube i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .youtube-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
}
