

/* CSS для анимаций */
.block-animate {
    animation: highlight 1s ease;
}

@keyframes highlight {
    0% { background-color: rgba(255,255,255,0); }
    20% { background-color: rgba(255,255,0,0.2); }
    100% { background-color: rgba(255,255,255,0); }
}

.animated {
    opacity: 0;
    transition: all 0.6s ease;
}

.fadeInUp {
    opacity: 1;
    transform: translateY(0);
}

.t-block {
    transform: translateY(30px);
}
