/* Base styles and custom animations extending Tailwind configuration */
html {
    scroll-behavior: smooth;
}

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

/* Enhancing the brand gradient to have a subtle shimmering animation effect */
.bg-brand-gradient {
    background-size: 200% auto;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Stylish selection highlighting */
::selection {
    background: #FFC8A2;
    color: #0F172A;
}

::-moz-selection {
    background: #FFC8A2;
    color: #0F172A;
}

/* Custom scrollbar matching the dark aesthetic */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0F172A;
}
::-webkit-scrollbar-thumb {
    background: #1E293B;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FFC8A2;
}
