@charset "UTF-8";

/* Custom Animations */

/* Shine effect for buttons */
@keyframes shine {
    100% {
        transform: translate(100%) skewX(12deg);
    }
}

.animate-shine {
    animation: shine 0.75s;
}

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Base style resets if needed (most handled by Tailwind) */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0B0F19;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #00F0FF;
}
