/* Extensions HK Global & Component Styles */

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

/* Solid White Navigation Bar */
.glass-nav {
    background: #ffffff; /* Solid White */
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Fluid Hover Transitions for Cards */
.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08);
}