/* Base style overrides */
:root {
    color-scheme: dark;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #09090b; 
}
::-webkit-scrollbar-thumb {
    background: #27272a; 
    border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
    background: #52525b; 
}

/* Alpine Collapse functionality plugin placeholder styling */
[x-cloak] { 
    display: none !important; 
}

/* Custom utility classes */
.blur-backdrop {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glow-text {
    text-shadow: 0 0 20px rgba(192, 38, 211, 0.5); /* Fuchsia glow */
}
