/* Custom CSS styles */
/* Add your custom styles here */

/* Apply Inter font globally (Google Sans alternative) */
* {
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Neon glow effects */
.neon-glow {
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5),
                 0 0 20px rgba(6, 182, 212, 0.3),
                 0 0 30px rgba(6, 182, 212, 0.2);
}

.neon-border {
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3),
                0 0 20px rgba(236, 72, 153, 0.2),
                inset 0 0 10px rgba(6, 182, 212, 0.1);
}

/* Example custom utility classes */
.btn-primary {
    @apply bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded transition duration-200;
}

