body { 
    font-family: 'Inter', sans-serif; 
}

.glass-effect { 
    backdrop-filter: blur(10px); 
    background: rgba(255, 255, 255, 0.1); 
}

.gradient-bg { 
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); 
}

.gradient-text { 
    background: linear-gradient(135deg, #000000 0%, #333333 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.shadow-glow { 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); 
}

.hover-lift { 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.hover-lift:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); 
}
