/* Premium UI - Dark Mode + Glassmorphism */

/* Glassmorphism for cards and modals */
.card, .tool-card, .auth-modal-content {
    background: rgba(30, 41, 59, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

/* Hover effects for cards */
.card, .tool-card {
    transition: all 0.3s ease !important;
}

.card:hover, .tool-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
}

/* Gradient buttons */
.cta-button, .auth-modal-content button, .btn-primary, .btn-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
    border: none !important;
    color: white !important;
    transition: opacity 0.3s, transform 0.3s !important;
}

.cta-button:hover, .auth-modal-content button:hover, .btn-primary:hover, .btn-gradient:hover {
    opacity: 0.9 !important;
    transform: scale(1.02) !important;
}

/* Custom Scrollbar - Dark and Elegant */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a; 
}

::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5); 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.8); 
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.5) #0f172a;
}
