/* styles.css - Premium Smooth Animations */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

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

.logo-font {
    font-family: 'Space Grotesk', sans-serif;
}

/* Glassmorphism */
.glass {
    background: rgba(20, 20, 23, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Hover Effect */
.card, .platform-card {
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.card:hover, .platform-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px -15px rgb(0 0 0 / 0.5);
    border-color: rgba(255,255,255,0.15);
}

/* Platform Cards */
.platform-card {
    cursor: pointer;
}

.platform-card i {
    transition: transform 0.4s ease;
}

.platform-card:hover i {
    transform: scale(1.15);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Glow */
.btn-glow:hover {
    transform: scale(1.05);
}