/* OnayVia.com - Main stylesheet entrypoint */
@import url('./variables.css');
@import url('./layout.css');
@import url('./components.css');

/* Utility helpers used by templates */
.mt-2 { margin-top: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }

.blur-effect {
    box-shadow: 0 12px 26px rgba(var(--primary-rgb), 0.28);
}

.animate-up {
    animation: animate-up 0.28s ease;
}

@keyframes animate-up {
    from { opacity: 0; transform: translateY(14px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
