/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #09090b; 
}

::-webkit-scrollbar-thumb {
    background: #3f3f46; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f97316; 
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Glassmorphism Utilities if not using Tailwind arbitrary values everywhere */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-glow {
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

/* Animation Utilities */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.clip-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
