/* Global Pink/Purple Theme Update */
:root {
    --primary-color: #ec4899 !important;
    /* Pink */
    --secondary-color: #8b5cf6 !important;
    /* Purple */
    --gradient-main: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%) !important;
    --neon-glow: 0 0 10px rgba(236, 72, 153, 0.3) !important;
}

/* body.dark-theme block removed — dark mode is now the only mode */

/* Ensure Text Gradients match */
.text-gradient {
    background: var(--gradient-main) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Update Button Shadows to match new color and add animation */
.btn:hover,
.nav-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4) !important;
}

.btn-primary,
.nav-btn-primary {
    animation: hue-rotate 10s infinite linear !important;
}