/* Custom CSS for MysteryLoot India */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
}

/* Custom Animations */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

@keyframes confetti {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

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

/* Utility Classes */
.animate-gradient-shift {
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}

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

.animate-float-delayed {
    animation: float-delayed 8s ease-in-out infinite;
}

.animate-scroll-ticker {
    animation: scroll-ticker 20s linear infinite;
}

/* Mystery Card Component */
.mystery-card {
    @apply bg-light/5 backdrop-blur-md border border-light/10 rounded-3xl p-8 transition-all duration-500;
}

.mystery-card:hover {
    @apply bg-light/10 border-light/20 transform -translate-y-2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Product Cards */
.mystery-product-card {
    @apply bg-light/5 backdrop-blur-md border border-light/10 rounded-3xl p-6 transition-all duration-500;
    transform-style: preserve-3d;
}

.mystery-product-card:hover {
    @apply bg-light/10 border-light/20;
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(20px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(236, 72, 153, 0.2);
}

/* Pricing Cards */
.mystery-pricing-card {
    @apply bg-light/5 backdrop-blur-md border border-light/10 rounded-3xl p-8 transition-all duration-500;
}

.mystery-pricing-card:hover {
    @apply bg-light/10 border-light/20 transform -translate-y-4;
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.4);
}

/* Button Styles */
.mystery-btn-primary {
    @apply relative bg-gradient-to-r from-primary to-accent text-white font-semibold px-8 py-4 rounded-full transition-all duration-300 overflow-hidden;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.mystery-btn-primary:hover {
    @apply transform scale-105;
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.6);
}

.mystery-btn-secondary {
    @apply bg-transparent border-2 border-light/30 text-light font-semibold px-8 py-4 rounded-full transition-all duration-300;
}

.mystery-btn-secondary:hover {
    @apply border-accent text-accent bg-accent/10;
}

.mystery-btn-outline {
    @apply bg-trans