/* ============================================
   NETWORK MENU BAR SECTION WITH PARTICLES
   ============================================ */

.network-menu-section {
    position: relative;
    width: 100%;
    min-height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
    margin: -70px 0px 0px 0px;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.network-menu-content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.network-menu-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.network-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    padding: 18px 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 130px;
    position: relative;
    overflow: hidden;
}

.network-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.5s ease;
}

.network-menu-item:hover::before {
    left: 100%;
}

.network-menu-item ion-icon {
    font-size: 32px;
    color: #ffc107;
    transition: all 0.3s ease;
}

.network-menu-item span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Professional Hover Effect */
.network-menu-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 193, 7, 0.2);
}

.network-menu-item:hover ion-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
}

.network-menu-item:hover span {
    color: #ffc107;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

/* Active/Pulse effect on click */
.network-menu-item:active {
    transform: translateY(-4px);
    transition: all 0.05s ease;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .network-menu-row {
        gap: 1.5rem;
    }
    
    .network-menu-item {
        padding: 14px 20px;
        min-width: 110px;
    }
    
    .network-menu-item ion-icon {
        font-size: 28px;
    }
    
    .network-menu-item span {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .network-menu-section {
        min-height: auto;
    }
    
    .network-menu-content {
        padding: 35px 0;
    }
    
    .network-menu-row {
        gap: 1rem;
        justify-content: center;
    }
    
    .network-menu-item {
        padding: 12px 16px;
        min-width: 100px;
    }
    
    .network-menu-item ion-icon {
        font-size: 24px;
    }
    
    .network-menu-item span {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

@media screen and (max-width: 580px) {
    .network-menu-row {
        gap: 0.8rem;
    }
    
    .network-menu-item {
        padding: 10px 14px;
        min-width: 85px;
    }
    
    .network-menu-item ion-icon {
        font-size: 20px;
    }
    
    .network-menu-item span {
        font-size: 9px;
    }
}

@media screen and (max-width: 480px) {
    .network-menu-row {
        gap: 0.6rem;
    }
    
    .network-menu-item {
        padding: 8px 10px;
        min-width: 75px;
    }
    
    .network-menu-item ion-icon {
        font-size: 18px;
    }
    
    .network-menu-item span {
        font-size: 8px;
    }
}

/* Animation for menu items on load */
@keyframes menuFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.network-menu-item {
    animation: menuFadeInUp 0.6s ease forwards;
    opacity: 0;
}

.network-menu-item:nth-child(1) { animation-delay: 0.1s; }
.network-menu-item:nth-child(2) { animation-delay: 0.2s; }
.network-menu-item:nth-child(3) { animation-delay: 0.3s; }
.network-menu-item:nth-child(4) { animation-delay: 0.4s; }
.network-menu-item:nth-child(5) { animation-delay: 0.5s; }
.network-menu-item:nth-child(6) { animation-delay: 0.6s; }