/* Cyber-Premium Custom Stylesheet for Selling Scripts Platform */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-bg-dark: #070710;
    --color-bg-card: rgba(15, 17, 36, 0.55);
    --color-accent-cyan: #06b6d4;
    --color-accent-purple: #a855f7;
    --color-accent-pink: #ec4899;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-dark);
    color: #f3f4f6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Outfit', sans-serif;
}

/* Neon grid pattern background */
.grid-overlay {
    background-image: 
        linear-gradient(rgba(6, 182, 212, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    pointer-events: none;
}

/* Glassmorphism Card Style */
.glass-panel {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.15);
    transform: translateY(-4px);
}

/* Premium Glowing Buttons */
.btn-glow-cyan {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.btn-glow-cyan:hover {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
    transform: scale(1.03);
}

.btn-glow-purple {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.btn-glow-purple:hover {
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.6);
    transform: scale(1.03);
}

/* Glowing text elements */
.text-glow-cyan {
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
}

.text-glow-purple {
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}

.text-glow-pink {
    text-shadow: 0 0 12px rgba(236, 72, 153, 0.4);
}

/* Glowing outline cards */
.glow-border-cyan:hover {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.5);
}

.glow-border-purple:hover {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
}

/* Animated gradient background */
.animated-gradient {
    background: linear-gradient(135deg, #050510 0%, #0c0828 50%, #030a1c 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.35; }
}

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

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #05050c;
}

::-webkit-scrollbar-thumb {
    background: #1c1d36;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-cyan);
}

/* Custom modal backdrop blur */
.modal-backdrop {
    background-color: rgba(3, 4, 10, 0.8);
    backdrop-filter: blur(8px);
}
