/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
}

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

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

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

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

/* Animations */
@keyframes pulse-gold {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-pulse-gold {
    animation: pulse-gold 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Button hover effects */
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Progress bar animations */
.progress-bar {
    transition: width 0.5s ease-in-out;
}

/* Metallic text effect */
.metallic-text {
    background: linear-gradient(45deg, #FFD700, #FF6B35, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom input styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-track {
    background: #2D2D2D;
    height: 8px;
    border-radius: 4px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: #FFD700;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 2px solid #FF6B35;
}

input[type="range"]::-moz-range-track {
    background: #2D2D2D;
    height: 8px;
    border-radius: 4px;
}

input[type="range"]::-moz-range-thumb {
    background: #FFD700;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #FF6B35;
}

/* Card hover effects */
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}