/* buttons.css - ЯРКИЕ КНОПКИ */
.btn {
    padding: 14px 28px !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 200px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Анимация при наведении */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Основная кнопка */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: white !important;
    border: 2px solid #3b82f6 !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5) !important;
}

/* Вторичная кнопка */
.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(10px) !important;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
}

/* Иконки в кнопках */
.btn .btn-icon {
    font-size: 1.3em;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

/* Активное состояние */
.btn:active {
    transform: translateY(-1px) scale(0.98) !important;
    transition: transform 0.1s !important;
}

/* Для главной страницы - особые кнопки */
.home-page .btn {
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
    min-width: 250px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .btn {
        padding: 12px 24px !important;
        min-width: 180px !important;
        font-size: 0.95rem !important;
    }
    
    .home-page .btn {
        width: 100%;
        max-width: 300px;
    }
}