/* Base custom styles extending Tailwind */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #111018;
}
::-webkit-scrollbar-thumb {
    background: #211C2A;
    border: 1px solid #7B5AA6;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #B97845;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out forwards;
}

.text-shadow-glow {
    text-shadow: 0 0 20px rgba(216, 168, 95, 0.3);
}

/* Accordion transition */
.faq-content {
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

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