/* Custom Styles */
body {
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Prevent layout shifts */
.w-full {
    max-width: 100vw;
}

/* Mobile Menu Z-Index Fixes */
.mobile-menu-overlay {
    z-index: 60;
}
.mobile-menu-panel {
    z-index: 70;
}

/* Glassmorphism utilities if needed beyond Tailwind */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gradient Text Animation */
.gradient-text {
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
