/* Custom Styles for Master Development */
body { font-family: 'Inter', sans-serif; background-color: #030712; }

.glass { 
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

#mobile-menu { 
    background: rgba(3, 7, 18, 0.98); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
}

.gradient-text { 
    background: linear-gradient(to right, #22d3ee, #3b82f6, #a855f7, #f97316); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.border-logo { 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    transition: all 0.3s ease; 
}

.border-logo:hover { 
    border-color: #3b82f6; 
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 0.3s ease-out forwards; }