/* GLOBAL CUSTOM STYLES */

:root {
    --primary-gradient: linear-gradient(135deg, #0284c7 0%, #4f46e5 100%);
    --dark-gradient: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(243, 244, 246, 0.6);
}

body {
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Tailwind custom grids background styling */
.bg-grid-white\/\[0\.05\] {
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

/* Form Styles */
input, select, textarea {
    transition: all 0.2s ease-in-out;
}
