.ai-avatar-container {
    width: 56px;
    height: 56px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-orb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle, #00e7ff 0%, #7a3cff 100%);
    box-shadow: 0 0 18px rgba(0,231,255,0.55);
    animation: pulseOrb 2.4s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

.ai-ring {
    position: absolute;
    border: 1px solid rgba(0, 231, 255, 0.35);
    border-radius: 50%;
}

.ai-ring-1 {
    width: 34px;
    height: 34px;
    animation: rotateRing 4.5s linear infinite;
}

.ai-ring-2 {
    width: 52px;
    height: 52px;
    border-color: rgba(122, 60, 255, 0.28);
    animation: rotateRingReverse 6s linear infinite;
}

@keyframes pulseOrb {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.18); opacity: 1; }
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateRingReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}