.section-livestream {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.section-livestream__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-livestream__title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.section-livestream__view-all {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.section-livestream__view-all:hover {
    color: #c0392b;
}

.section-livestream__content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.livestream-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.livestream-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.livestream-card__image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.livestream-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.livestream-card__live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.livestream-card__content {
    padding: 15px;
}

.livestream-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.livestream-card__info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.livestream-card__viewers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.livestream-card__viewers i {
    color: #e74c3c;
}

.livestream-card__time {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-livestream {
        padding: 30px 0;
    }

    .section-livestream__title {
        font-size: 20px;
    }

    .section-livestream__content {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-livestream__content {
        grid-template-columns: 1fr;
    }
} 