/* Custom animations and styles */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.pulse {
    animation: pulse 2s infinite;
}

.sparkle-hover:hover {
    animation: sparkle 0.6s ease-in-out;
}

.ticker-item {
    white-space: nowrap;
    animation: ticker 15s linear infinite;
}

.vibe-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: #4338ca;
    outline: none;
}

.vibe-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fbbf24;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.vibe-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fbbf24;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Gradient text effects */
.gradient-text {
    background: linear-gradient(45deg, #fbbf24, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

::-webkit-scrollbar-track {
    background: #312e81;
}

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

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

/* Hover effects */
.hover-glow:hover {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    transition: box-shadow 0.3s ease;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
    
    .md\:text-5xl {
        font-size: 2.5rem;
    }
}