.jw-offline-overlay {
    position: fixed;
    inset: 0;
    z-index: 200000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(11, 18, 32, 0.6);
    padding: 20px;
}
.jw-offline-overlay.is-visible {
    display: flex;
}
.jw-offline-card {
    width: min(520px, 96vw);
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.jw-offline-gif {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    margin: 0 auto 14px;
    border: 4px solid #dce7fb;
    border-top-color: #1f74da;
    animation: jwOfflineSpin 0.9s linear infinite;
}
.jw-offline-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f2a44;
}
.jw-offline-text {
    margin: 10px 0 0;
    font-size: 17px;
    color: #5a6784;
}
.jw-offline-fun {
    margin: 14px 0 0;
    font-size: 15px;
    color: #1f74da;
    font-weight: 600;
    min-height: 22px;
}
@keyframes jwOfflineSpin {
    to { transform: rotate(360deg); }
}
