/* Custom base styles to complement Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.gradient-text {
    background: linear-gradient(to right, #3e59b6, #188cc0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hide scrollbar for clean horizontal scroll if needed */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
