/* Custom Styles and Animations */

.gold-gradient {
    background: linear-gradient(135deg, #ffbf00 0%, #bf8200 100%);
}

.gold-text-gradient {
    background: linear-gradient(135deg, #ffbf00 0%, #bf8200 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.black-gold-card {
    @apply bg-[#1a1a1a] border border-gold-900/20 hover:border-gold-500/50 transition-all duration-300;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ffbf00;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulseSlow {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.15);
    }
}

.animate-pulse-slow {
    animation: pulseSlow 10s infinite ease-in-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Header Scroll Effect */
header.scrolled {
    @apply bg-black/90 backdrop-blur-md py-3 border-b border-gold-900/20;
}

/* Movie Card Hover */
.movie-card:hover img {
    transform: scale(1.1);
}

.movie-card:hover .play-overlay {
    opacity: 1;
}
