/* Premium Creator Hub - Dark Glam CSS */

:root {
    --primary-neon: #a855f7;
    --secondary-neon: #ec4899;
}

body {
    background-color: #0f0705;
    color: #f1f5f9;
}

/* Custom Selection */
::selection {
    background: var(--primary-neon);
    color: white;
}

/* Neon Glows */
.neon-text-purple {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.neon-glow-purple {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.neon-glow-pink {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0f0705;
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-neon);
}

/* Animations */
@keyframes pulse-neon {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.animate-neon {
    animation: pulse-neon 2s infinite ease-in-out;
}

/* Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hover-lift:hover {
    transform: translateY(-5px);
}
