/* Анимации */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Подсветка полей */
.field-highlight {
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.5) !important;
}

.field-pulse {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(43, 108, 176, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(43, 108, 176, 0); }
    100% { box-shadow: 0 0 0 0 rgba(43, 108, 176, 0); }
}

/* Анимация счетчиков */
.counter {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}