/* Base styles and resets */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    background-color: var(--color-dark);
    color: white;
    font-family: var(--font-sans);
}

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

::-webkit-scrollbar-track {
    background: #161616;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64a19d;
}

/* Animation utilities that might not be in default tailwind */
@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(100, 161, 157, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(100, 161, 157, 0.8), 0 0 30px rgba(100, 161, 157, 0.6);
    }
}

.text-shadow-glow {
    animation: glow 2s infinite;
}