/* Mobile Bottom Navigation */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    display: none;
    z-index: 1000;
}

.mobile-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    padding: 5px;
    cursor: pointer;
}

.nav-item.active {
    color: #4ecdc4;
}

.nav-item:hover {
    color: #ffffff;
}

.nav-icon {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }

    .container {
        padding-bottom: 80px;
    }
    
    body {
        padding-bottom: 80px;
    }
}
