/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ===== */

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    animation: fadeIn 0.4s ease forwards;
}

.card:nth-child(2) {
    animation-delay: 0.1s;
}

/* Состояния для кнопок */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff6b6b, #e63946);
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 50, 50, 0.3);
}

.btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(255, 50, 50, 0.2);
}

/* Плейсхолдер для пустых состояний */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #8f7a7a;
}

.empty-state i {
    font-size: 48px;
    color: #ff444444;
    margin-bottom: 16px;
}

/* Тост-уведомления */
.toast {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 8, 10, 0.9);
    backdrop-filter: blur(12px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 50, 50, 0.2);
    color: #f5edf0;
    font-size: 14px;
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Загрузочный спиннер */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 50, 50, 0.1);
    border-top: 3px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}