/*
 * Стили для плавающей кнопки MAX.RU
 */
.mmb-floating-button {
    position: fixed;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.mmb-floating-button:hover {
    transform: scale(1.1);
}

.mmb-floating-button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    animation: mmb-pulse 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

.mmb-welcome-text {
    background: #fff; color: #000; padding: 8px 12px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); font-family: sans-serif; font-size: 14px; white-space: nowrap;
}

@keyframes mmb-pulse {
    0% { box-shadow: 0 2px 10px rgba(0,0,0,0.15), 0 0 0 0 rgba(123, 97, 255, 0.5); }
    70% { box-shadow: 0 2px 10px rgba(0,0,0,0.15), 0 0 0 15px rgba(123, 97, 255, 0); }
    100% { box-shadow: 0 2px 10px rgba(0,0,0,0.15), 0 0 0 0 rgba(123, 97, 255, 0); }
}