.live-indicator {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-left: -30px;
    margin-bottom: 13px;
    border-radius: 50%;
    vertical-align: middle;
}

.live-on {
    background-color: red;
    animation: blink 1s infinite;
}

.live-off {
    background-color: white;
    border: 1px solid #999;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}

.youtube-live-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#live-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio (9 / 16 = 0.5625) */
    overflow: hidden;
    background: black;
    border-radius: 8px;
}

#live-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.offline-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: var(--main-uppercase-spacing);
    font-size: 1.5rem;
    gap: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.offline-message p{
    margin-bottom: 0;
}



@media (max-width: 1000px) {
    .offline-message {
        font-size: 0.7rem;
    }
}



@media (max-width: 675.98px) {
    .live-indicator {
        width: 12px;
        height: 12px;
        margin-left: -15px;
        margin-bottom: 6px;
    }

    .page-container {
        min-height: 0;
    }
}