#top.hero {
    background-image: linear-gradient(180deg, rgba(15, 28, 46, 0.31), rgba(15, 28, 46, 0.51)),
        url("../assets/matrix-ade/hero.webp");
    background-position: 40% 40%;
    min-height: var(--hero-height-without-cta);
}
#top.hero .hero-grid {
    min-height: calc(var(--hero-height-without-cta) - 80px);
}
.streaming-section {
    background: var(--color-off-white);
    border-top: 1px solid rgba(15, 28, 46, 0.08);
}
.streaming-player {
    position: relative;
    max-width: 720px;
    margin: var(--space-5) auto;
    background: #000;
    border: 1px solid rgba(15, 28, 46, 0.15);
    border-radius: var(--radius-2);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 28, 46, 0.12);
}
#player {
    width: 100%;
    height: 405px;
    background: #000;
    display: block;
}
#overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.05rem;
    text-align: center;
    z-index: 9;
    transition: opacity 0.4s;
}
.overlay-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: stream-spin 0.8s linear infinite;
    display: none;
}
#overlay.overlay-loading .overlay-spinner {
    display: block;
}
#statusMsg {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
#overlay.overlay-muted #statusMsg {
    font-size: 1.35rem;
    font-weight: 600;
}
.overlay-btn {
    margin-top: 0.6rem;
    padding: 0.7rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    background: #fff;
    color: #111;
}
.overlay-btn:hover {
    background: #f1f1f1;
}
#overlay.overlay-loading .overlay-btn {
    display: none;
}
@media (max-width: 720px) {
    #top.hero {
        background-position: 70% 40%;
        min-height: var(--hero-height-without-cta-mobile);
    }

    #top.hero .hero-grid {
        min-height: calc(var(--hero-height-without-cta-mobile) - 80px);
    }

    #player {
        height: 56vw;
        max-height: 320px;
    }
}
@keyframes stream-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
