/* Custom Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0f16;
    color: #e2e8f0;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Form Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 1px #d4af37;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0a0f16;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border: 1px solid #d4af37;
}
::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

/* Selection Color */
::selection {
    background: #d4af37;
    color: #0a0f16;
}
