.ami-ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.ami-ol li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: #333;
}


.ami-ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.ami-ul li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: #333;
}

.ami-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.ami-table thead {
    background-color: #f3f4f6;
}

.ami-table th,
.ami-table td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    text-align: left;
}

.ami-table th {
    font-weight: 600;
}

.ami-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* 🎨 КАСТОМНЫЕ АНИМАЦИИ И ДОПОЛНЕНИЯ К TAILWIND CSS */

/* Кнопка Telegram */
.btn-telegram {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%) !important;
    color: white !important;
    border: none !important;
    text-decoration: none !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease !important;
}
.btn-telegram:hover {
    background: linear-gradient(135deg, #006699 0%, #0088cc 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3) !important;
}

/* Анимация появления элементов при скролле */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Дополнительные анимации (не конфликтуют с Tailwind) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Специальная анимация для статистики */
.animate-counter {
    transition: all 0.5s ease-out;
}

/* Плавное увеличение при hover для карточек */
.hover-lift {
    transition: all 0.3s ease-out;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}