body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
}

/* ✅ চ্যানেল কার্ড ডিজাইন */
.channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

.channel-card:hover {
    transform: scale(1.1);
}

/* ✅ চ্যানেলের ইমেজ */
.channel-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid red;
    object-fit: cover;
    background-color: #333; /* যদি ছবি না থাকে */
}

/* ✅ চ্যানেলের নাম */
.channel-name {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-align: center;
}

/* ✅ মোবাইল রেস্পনসিভ */
@media (max-width: 576px) {
    .channel-img {
        width: 70px;
        height: 70px;
    }
    .channel-name {
        font-size: 12px;
    }
}
