/**
 * Enhanced Creator Dashboard Sidebar Styles
 * Adds missing classes for the redesigned sidebar
 */

/* Glassmorphism Effects */
.bg-glass-dark {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-glass-morphism {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Enhanced Shadow Effects */
.shadow-neon-electric {
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.3),
        0 0 40px rgba(16, 185, 129, 0.2),
        0 0 60px rgba(16, 185, 129, 0.1);
}

.shadow-neon-glow {
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.4),
        0 0 30px rgba(139, 92, 246, 0.2),
        0 0 45px rgba(139, 92, 246, 0.1);
}

.shadow-electric-glow {
    box-shadow: 
        0 0 15px rgba(16, 185, 129, 0.4),
        0 0 30px rgba(16, 185, 129, 0.2),
        0 0 45px rgba(16, 185, 129, 0.1);
}

/* Sidebar Section Hierarchy */
.sidebar-primary-section .backdrop-blur-xl {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 2px solid rgba(16, 185, 129, 0.4);
    box-shadow: 
        0 0 25px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sidebar-secondary-section .backdrop-blur-xl {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.sidebar-tertiary-section .backdrop-blur-xl {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

/* Hover Effects */
.sidebar-primary-section .backdrop-blur-xl:hover {
    transform: scale(1.02);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 
        0 0 35px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.sidebar-secondary-section .backdrop-blur-xl:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.sidebar-tertiary-section .backdrop-blur-xl:hover {
    border-color: rgba(75, 85, 99, 0.5);
    box-shadow: 0 0 15px rgba(75, 85, 99, 0.2);
}

/* Animation Enhancements */
.animate-cyber-glow {
    animation: cyberGlow 3s ease-in-out infinite;
}

@keyframes cyberGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(16, 185, 129, 0.8),
            0 0 20px rgba(16, 185, 129, 0.6),
            0 0 30px rgba(16, 185, 129, 0.4);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(16, 185, 129, 1),
            0 0 30px rgba(16, 185, 129, 0.8),
            0 0 40px rgba(16, 185, 129, 0.6);
    }
}

/* Electric Color Variants */
.text-electric-300 {
    color: rgba(16, 185, 129, 0.9);
}

.text-electric-400 {
    color: rgba(16, 185, 129, 1);
}

.text-neon-300 {
    color: rgba(139, 92, 246, 0.9);
}

.text-neon-400 {
    color: rgba(139, 92, 246, 1);
}

.bg-electric-600\/20 {
    background-color: rgba(16, 185, 129, 0.2);
}

.bg-electric-600\/30 {
    background-color: rgba(16, 185, 129, 0.3);
}

.bg-neon-600\/20 {
    background-color: rgba(139, 92, 246, 0.2);
}

.bg-neon-600\/30 {
    background-color: rgba(139, 92, 246, 0.3);
}

/* Border Colors */
.border-electric-500\/30 {
    border-color: rgba(16, 185, 129, 0.3);
}

.border-electric-500\/40 {
    border-color: rgba(16, 185, 129, 0.4);
}

.border-neon-500\/30 {
    border-color: rgba(139, 92, 246, 0.3);
}

.border-neon-400\/50 {
    border-color: rgba(139, 92, 246, 0.5);
}

/* Sidebar Button Styling */
.sidebar-btn {
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.sidebar-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Copy Button Enhancement */
.copy-btn {
    opacity: 0.7;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Notification Styling */
.sidebar-notification {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    font-weight: 500;
    letter-spacing: 0.025em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sidebar-primary-section .backdrop-blur-xl:hover {
        transform: none;
    }
    
    .bg-glass-dark,
    .bg-glass-morphism {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .shadow-neon-electric,
    .shadow-neon-glow,
    .shadow-electric-glow {
        box-shadow: 
            0 0 10px rgba(139, 92, 246, 0.2),
            0 0 20px rgba(139, 92, 246, 0.1);
    }
}