.lp-fomo-v2 {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 97;
    max-width: calc(100vw - 40px);
    pointer-events: none;
}

.lp-fomo-v2__pill {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 320px;
    padding: 10px 18px 10px 8px;
    background: var(--fomo-bg, #ffffff);
    border-radius: 100px;
    box-shadow: var(--box-shadow-other-md);
    pointer-events: auto;
    animation: lpFomoV2SlideIn .5s ease;
}

.lp-fomo-v2__character {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    animation: lpFomoV2Float 3s ease-in-out infinite;
}

.lp-fomo-v2__live-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--fomo-accent, #ff7a00);
    box-shadow: 0 0 0 0 rgba(255, 122, 0, .5);
    animation: lpFomoV2Pulse 1.8s ease-out infinite;
}

.lp-fomo-v2__message {
    position: relative;
    display: block;
    color: var(--fomo-text, #22377e);
    font-size: var(--font-text-size-md);
    font-weight: 600;
    line-height: 1.35;
}

.lp-fomo-v2__count {
    color: var(--fomo-accent, #ff7a00);
    font-weight: 700;
}

@keyframes lpFomoV2SlideIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes lpFomoV2Float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes lpFomoV2Pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, .5);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(255, 122, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-fomo-v2__pill,
    .lp-fomo-v2__character,
    .lp-fomo-v2__live-dot {
        animation: none !important;
    }
}

@media (max-width: 575px) {
    .lp-fomo-v2 {
        left: 10px;
        right: 10px;
        bottom: 90px;
        max-width: none;
        display: flex;
        justify-content: center;
    }

    .lp-fomo-v2__pill {
        max-width: 100%;
        padding: 8px 16px 8px 8px;
    }

    .lp-fomo-v2__message {
        font-size: var(--font-text-size-sm);
    }
}
