body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
}
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}
/* Glassmorphism effects for specific modern elements */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}

/* Animated Gradient Background for Home */
.hero-bg {
    background: linear-gradient(-45deg, #0d6efd, #0dcaf0, #6610f2, #d63384);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .hero-glass {
    background: rgba(33, 37, 41, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
}

.shape-1 { background: #ff007f; width: 300px; height: 300px; top: -10%; left: -10%; animation-delay: 0s; }
.shape-2 { background: #00f0ff; width: 400px; height: 400px; bottom: -20%; right: -10%; animation-delay: -5s; }
.shape-3 { background: #7000ff; width: 250px; height: 250px; top: 40%; left: 50%; animation-delay: -2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Mobile App Specific Styles */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 80px; /* Space for bottom nav */
    }
    
    .mobile-bottom-nav {
        height: 60px;
        z-index: 1030;
    }
    
    .mobile-bottom-nav .nav-item {
        flex: 1;
        padding: 0.5rem 0;
        transition: all 0.2s ease;
    }
    
    .mobile-bottom-nav .nav-item:active {
        transform: scale(0.95);
    }
    
    .pb-safe {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    /* Make the top navbar look more like a mobile app header */
    .navbar {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .navbar-brand {
        font-size: 1.1rem;
        margin: 0 auto;
    }
}
