.elementor-659 .elementor-element.elementor-element-38b923a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-dcd6d87 */.channels-box {
    background: #0f141a;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}

.title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.title-row .title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.title-row .tag {
    background: #f97316;
    padding: 4px 10px;
    border-radius: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.ch {
    background: #111821;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    color: white;
    font-size: 15px;
    text-align: center;
    transition: 0.25s;
}

.ch:hover {
    background: #1a232e;
    transform: translateY(-2px);
}

/* ⭐ تحسين الشكل في الهاتف */
@media (max-width: 600px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ch {
        font-size: 14px;
        padding: 10px;
    }
}/* End custom CSS */