/* Shared Navigation Styles */
.top-nav {
    background: transparent;
    padding: 15px 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    border: 2px solid transparent;
    margin-bottom: 12px;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.9);
    color: #3498db;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        gap: 15px;
    }

    .nav-link {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}
