/* 
    styles.css 
    
    This file has been cleared as the Tunecamp website has been 
    updated to an Expressive Design using Tailwind CSS v4.
    
    All base styles, themes, and design tokens are now managed 
    via the <style type="text/tailwindcss"> block in the 
    HTML headers (index.html, community.html, player.html).
*/

/* Example custom animation not natively supported by Tailwind standard preset without plugin */
@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

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