﻿.lg-button {
    background-color: var(--button-color);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    background: linear-gradient(135deg,
            rgba(42, 140, 127, 0.1) 0%,
            rgba(42, 140, 127, 0.2) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(42, 140, 127, 0.2);
    border-radius: 25px;
    color: var(--button-color);
    font-weight: 600;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 32px rgba(42, 140, 127, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(42, 140, 127, 0.1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.lg-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transition: left 0.6s ease;
}

.lg-button:hover {
    background: linear-gradient(135deg,
            rgba(42, 140, 127, 0.15) 0%,
            rgba(42, 140, 127, 0.25) 100%);
    border-color: rgba(42, 140, 127, 0.4);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(42, 140, 127, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(42, 140, 127, 0.2);
}

.lg-button:hover::before {
    left: 100%;
}

.lg-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow:
        0 4px 16px rgba(42, 140, 127, 0.15),
        0 1px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lg-button i {
    transition: transform 0.3s ease;
    margin-right: 8px;
}

.lg-button:hover i {
    transform: scale(1.1) rotate(5deg);
}
