/* Custom CSS for Openmagick */



/* Custom shadow classes */
.custom-shadow {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6) !important;
}

.custom-shadow-soft {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4) !important;
}

.custom-shadow-intense {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8) !important;
}

/* Custom background gradients */
.bg-magic-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-dark-magic {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Custom text effects */
.text-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.text-magic {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom button styles */
.btn-magic {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-magic:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Custom card styles */
.card-magic {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

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

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.6); }
    50% { box-shadow: 0 0 25px rgba(255, 255, 255, 0.8); }
}

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

/* Custom responsive utilities */
@media (max-width: 768px) {
    .mobile-glow {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.4) !important;
    }
}

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
} 