/* Custom CSS */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scrollbar styling - Minimalist */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #08080A;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Typography refinements */
h1, h2, h3, h4, .font-display {
    letter-spacing: -0.02em; /* Tighter headings for modern look */
}

/* Animations custom classes */
@keyframes pulse-slow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.animate-pulse-slow {
    animation: pulse-slow 8s ease-in-out infinite;
}

/* Glassmorphism helpers that Tailwind needs help with sometimes */
.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Text gradients helpers */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}