/* ==========================================
   LIVE STREAM
========================================== */

.live-stream-section {
    padding: 100px 20px;
    background: var(--primary-color);
    text-align: center;
}

.live-stream-section .section-title {
    font-family: var(--heading-font);
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 40px;
}

.live-stream-section .section-title i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.live-stream-wrapper {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.live-stream-item {
    background: var(--secondary-color);
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    margin: 20px;
}

.live-stream-item:hover {
    transform: translateY(-4px);
}

.live-stream-link,
.live-stream-info {
    font-size: 16px;
    text-decoration: none;
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.live-stream-link i,
.live-stream-info i {
    font-size: 22px;
    color: var(--text-color);
}