/* Custom Styles for Editorial Feel */
html {
    scroll-behavior: smooth;
}

body {
    /* Prevent horizontal scroll from negative margins */
    overflow-x: hidden;
}

/* Typography Tweaks */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

/* Smooth fade-in animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0A192F;
}

::-webkit-scrollbar-thumb {
    background: #98FFD8;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #fff;
}
