/* ===== Modal ===== */
.stream-modal-content {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.stream-modal-content .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
}

.stream-modal-content .modal-title {
    font-size: 1rem;
    font-weight: 700;
}

.stream-embed-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.stream-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Info Card (inside modal) ===== */
.stream-info-card {
    padding: 24px 20px 20px;
}

.stream-info-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.stream-info-main {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 991px) {
    .stream-info-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stream-info-main {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .stream-info-host,
    .stream-info-times {
        justify-content: center;
    }

    .stream-info-links {
        width: 100%;
        text-align: center;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stream-info-links-btns {
        justify-content: center;
    }
}

.stream-info-thumb {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    aspect-ratio: 1 / 1!important;
    overflow: hidden;
    border-radius: .5rem!important;
}

.stream-info-thumb img {
    width: 100%;
    z-index: 10!important;
    position: relative;
}

.stream-info-links {
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .stream-info-links {
        margin-left: auto;
    }
}

.stream-info-links-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: lightskyblue;
    margin-bottom: 8px;
}

.stream-info-links-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.stream-link-btn {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.stream-link-btn:hover {
    background: lightskyblue;
    border-color: lightskyblue;
    color: #121212;
}

.stream-info-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.stream-info-details {
    flex: 1;
    min-width: 0;
}

.stream-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stream-info-host,
.stream-info-times {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.stream-info-host svg,
.stream-info-times svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ===== Expandable Description (3 lines max) ===== */
.stream-desc-wrap {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stream-desc-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: lightskyblue;
    margin-bottom: 8px;
}

.stream-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stream-desc.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.stream-desc-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 0 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.stream-desc-toggle:hover {
    color: var(--accent-hover);
}

.stream-desc-toggle svg {
    transition: transform 0.25s ease;
}

.stream-desc-toggle svg.rotated {
    transform: rotate(180deg);
}

