/* ======================================================
   LIVE STREAM – ELEGANT ZIG STYLE
====================================================== */

.live-stream-section {
    padding: 100px 20px;
    text-align: center;
    color: var(--text-color);
}

/* title */
.live-stream-section .section-title {
    font-family: var(--heading-font);
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.live-stream-section p {
    max-width: 500px;
    margin: 0 auto 50px;
    opacity: 0.7;
}

/* wrapper */
.live-stream-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* item */
.live-stream-item {
    position: relative;
    width: 65%;
    margin: 0 auto;
}

/* CARD UTAMA */
.live-stream-link,
.live-stream-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 25px 30px;
    background: #fff;
    border-radius: 50px;

    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;

    position: relative;
    z-index: 2;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* ICON */
.live-stream-link i,
.live-stream-info i {
    font-size: 20px;
    color: var(--secondary-color);
}

/* HOVER */
.live-stream-link:hover {
    transform: translateY(-5px);
}

/* =====================================
   LAYER BELAKANG (INI YANG PENTING 🔥)
===================================== */
.live-stream-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    border-radius: 50px;
    z-index: 1;
    opacity: 0.2;
    transition: all 0.3s ease;
}

/* zig-zag efek */
.live-stream-item:nth-child(odd)::after {
    transform: translate(-12px, 12px);
}

.live-stream-item:nth-child(even)::after {
    transform: translate(12px, 12px);
}

/* hover biar hidup dikit */
.live-stream-item:hover::after {
    transform: translate(0, 0);
    opacity: 0.3;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 768px) {
    .live-stream-item {
        width: 90%;
    }
}