.shake-visual {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13,110,253,0.16), rgba(13,110,253,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.shake-visual.shaking {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(13, 110, 253, 0.35);
}

.shake-pulse {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 2px dashed rgba(13, 110, 253, 0.3);
    animation: shakePulse 6s linear infinite;
}

.shake-visual.shaking .shake-pulse {
    animation-duration: 1.2s;
    border-color: rgba(220, 53, 69, 0.4);
}

.shake-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(0.1);
}

.display-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.display-value {
    font-size: 2.6rem;
    font-weight: 700;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(108, 117, 125, 0.25);
}

.data-row:last-child {
    border-bottom: none;
}

.guideline-list {
    margin: 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@keyframes shakePulse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

[data-bs-theme="dark"] .shake-visual {
    background: linear-gradient(135deg, rgba(13,110,253,0.26), rgba(13,110,253,0.12));
}

[data-bs-theme="dark"] .data-row {
    border-bottom-color: rgba(255, 255, 255, 0.18);
}
