/* Custom styles and overrides */
html {
    scroll-behavior: smooth;
}

/* Ensure all text is readable */
.text-midnight-900 {
    color: #0a1229;
}

.text-midnight-800 {
    color: #0f1c3f;
}

.bg-midnight-900 {
    background-color: #0a1229;
}

.bg-midnight-800 {
    background-color: #0f1c3f;
}

.text-mint-400 {
    color: #4fd1c5;
}

.text-mint-300 {
    color: #7de8d6;
}

.bg-mint-400 {
    background-color: #4fd1c5;
}

.bg-mint-300 {
    background-color: #7de8d6;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: #4fd1c5;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7de8d6;
}
