/* Custom CSS for Arzharoth Inc */

.gradient-text {
    background: linear-gradient(135deg, #a78bfa 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cyber-grid {
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.glass-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.glow-button {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.glow-button:hover {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5), 0 0 60px rgba(99, 102, 241, 0.3);
}

.tech-border {
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.neon-accent {
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
}

.code-tag {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.8em;
    display: inline;
    white-space: nowrap;
    line-height: 1.4;
}

/* Dark mode base styles */
.dark body {
    background-color: #0f172a;
    color: #e2e8f0;
}

/* Light mode fallback - site is dark by default */
body {
    background-color: #0f172a;
    color: #e2e8f0;
}

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

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
    100% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 60px rgba(99, 102, 241, 0.4); }
}

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

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
