@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body { font-family: 'Inter', sans-serif; }

.gradient-bg {
    background: linear-gradient(135deg, #1f1f23 0%, #2d1b2e 50%, #1f1f23 100%);
}

.pink-glow {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}

.ai-pulse {
    animation: pulse-pink 2s infinite;
}

@keyframes pulse-pink {
    0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.4); }
    50% { box-shadow: 0 0 40px rgba(236, 72, 153, 0.8); }
}

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

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

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
}

.text-gradient {
    background: linear-gradient(135deg, #ec4899, #f472b6, #fb7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}