/* campaigns/mundial/theme.css */

/* Hero entry animations */
.hero-anim {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Custom Scrollbar for products if needed */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0b1e3b;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-shadow-glow {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}