.ks-player-event-state {
    min-height: 320px;
    margin: 1rem 0;
    padding: 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(88, 103, 221, .08), transparent 42%),
        #fff;
    border: 1px solid #edf0f5;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(30, 40, 80, .06);
}

.ks-player-event-state__loader {
    position: relative;
    width: 84px;
    height: 84px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ks-player-event-state__ball,
.ks-player-event-state__icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    color: #5867dd;
    background: linear-gradient(145deg, #ffffff, #eef1ff);
    border: 1px solid rgba(88, 103, 221, .16);
    box-shadow: 0 8px 24px rgba(88, 103, 221, .16);
}

.ks-player-event-state__ball {
    position: relative;
    z-index: 2;
    animation: ks-player-event-ball 1.15s ease-in-out infinite;
}

.ks-player-event-state__pulse {
    position: absolute;
    width: 78px;
    height: 24px;
    bottom: 1px;
    border-radius: 50%;
    background: rgba(88, 103, 221, .12);
    animation: ks-player-event-shadow 1.15s ease-in-out infinite;
}

.ks-player-event-state__icon {
    margin-bottom: 1.25rem;
    color: #6c7293;
    background: linear-gradient(145deg, #fff, #f6f7fb);
    border-color: #e8eaf1;
    box-shadow: 0 8px 24px rgba(30, 40, 80, .08);
}

.ks-player-event-state__title {
    margin: 0 0 .5rem;
    color: #20243a;
    font-size: 1.25rem;
    font-weight: 700;
}

.ks-player-event-state__message {
    max-width: 520px;
    margin: 0;
    color: #7e8299;
    font-size: .98rem;
    line-height: 1.6;
}

.ks-player-event-state__badge {
    margin-top: 1rem;
    padding: .4rem .8rem;
    color: #74788d;
    background: #f4f5f8;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
}

@keyframes ks-player-event-ball {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(18deg); }
}

@keyframes ks-player-event-shadow {
    0%, 100% { transform: scaleX(1); opacity: .8; }
    50% { transform: scaleX(.68); opacity: .35; }
}
