.animated-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    border: none !important;
    outline: none !important;
}

/* Большая кнопка */
.animated-button.button-big {
    padding: 18px 36px;
    font-size: 20px;
    font-weight: 700;
}

/* Маленькая кнопка */
.animated-button.button-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Скрытие ссылки в статусбаре */
.animated-button.hide-link {
    user-select: none;
}

.animated-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.animated-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.animated-button:hover:before {
    left: 100%;
}

/* Дополнительные эффекты при нажатии */
.animated-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
} 