.rlive-status {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.rlive-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #777;
    display: inline-block;
}

.rlive-dot.is-live {
    background: #e10600;
    box-shadow: 0 0 8px rgba(225, 6, 0, 0.5);
}

.rlive-dot.is-offline {
    background: #777;
}

.rlive-inner {
    position: relative;
}

.rlive-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.72);
    z-index: 5;
    text-align: center;
    padding: 20px;
}

.rlive-fallback-box {
    background: rgba(20, 20, 20, 0.9);
    color: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    max-width: 420px;
}

.rlive-fallback-box p {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

.rlive-live-badge {
    display: none;
}