/* Custom styles and overrides */
:root {
    --plum-950: #1a0d14;
    --plum-900: #2d1520;
    --amber-400: #f59e0b;
    --amber-500: #d97706;
    --amber-600: #b45309;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: var(--plum-950);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--amber-400), var(--amber-600));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--amber-400);
}

/* Selection color */
::selection {
    background: rgba(245, 158, 11, 0.3);
    color: white;
}

/* Subtle gold glow effect for cards */
.glow-amber {
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* 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;
    }
    
    html {
        scroll-behavior: auto;
    }
}
