/* Fanclub Section Styles */

/* Base background setup */
.fanclub-section {
    background-color: #0ea5e9; /* Fallback Sky Blue */
}

/* Fluid Animated Gradient Background */
.fanclub-animated-bg {
    background: linear-gradient(-45deg, #06b6d4, #0ea5e9, #3b82f6, #22d3ee);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1); /* Very subtle white tint */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Custom bounce that is less aggressive than the default */
@keyframes subtleBounce {
    0%, 100% { transform: translateY(-5%); }
    50% { transform: translateY(5%); }
}

.animate-bounce-subtle {
    animation: subtleBounce 2s infinite ease-in-out;
}

/* Slow pulse for background elements */
@keyframes pulseSlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

.animate-pulse-slow {
    animation: pulseSlow 6s infinite ease-in-out;
}